1
0
docker-cmatrix/Dockerfile

17 lines
440 B
Docker
Raw Normal View History

2024-09-21 14:36:49 +00:00
FROM alpine
MAINTAINER Benjamin Burkhardt <bluefox@privacynerd.de>
WORKDIR cmatrix
RUN apk update
RUN apk add git autoconf automake alpine-sdk ncurses-dev ncurses-static
RUN git clone https://git.privacynerd.de/Mirrors/cmatrix.git .
RUN autoreconf -i # skip if using released tarball
RUN mkdir -p /usr/lib/kbd/consolefonts /usr/share/consolefonts
RUN ./configure LDFLAGS="-static" # for static compilation
RUN make
2024-09-21 14:36:49 +00:00
CMD ["./cmatrix"]