1
0

Compare commits

..

No commits in common. "f66a7c6370350f05855702982905cc6fec64c3ad" and "19ff0b5a1734a7d3ae8bf48945485e0aa0250bab" have entirely different histories.

View File

@ -1,15 +1,16 @@
FROM alpine FROM alpine
LABEL org.opencontainers.image.authors="bluefox@privacynerd.de" MAINTAINER Benjamin Burkhardt <bluefox@privacynerd.de>
WORKDIR cmatrix WORKDIR cmatrix
RUN apk update && \ RUN apk update
apk add git autoconf automake alpine-sdk ncurses-dev ncurses-static && \ RUN apk add git autoconf automake alpine-sdk ncurses-dev ncurses-static
git clone https://git.privacynerd.de/Mirrors/cmatrix.git . && \ RUN git clone https://git.privacynerd.de/Mirrors/cmatrix.git .
autoreconf -i && \ RUN autoreconf -i # skip if using released tarball
mkdir -p /usr/lib/kbd/consolefonts /usr/share/consolefonts && \ RUN mkdir -p /usr/lib/kbd/consolefonts /usr/share/consolefonts
./configure LDFLAGS="-static" && \ RUN ./configure LDFLAGS="-static" # for static compilation
make RUN make
CMD ["./cmatrix"] CMD ["./cmatrix"]