16 lines
409 B
Docker
16 lines
409 B
Docker
FROM alpine
|
|
|
|
MAINTAINER Benjamin Burkhardt <bluefox@privacynerd.de>
|
|
|
|
WORKDIR cmatrix
|
|
|
|
RUN apk update && \
|
|
apk add git autoconf automake alpine-sdk ncurses-dev ncurses-static && \
|
|
git clone https://git.privacynerd.de/Mirrors/cmatrix.git . && \
|
|
autoreconf -i && \
|
|
mkdir -p /usr/lib/kbd/consolefonts /usr/share/consolefonts && \
|
|
./configure LDFLAGS="-static" && \
|
|
make
|
|
|
|
CMD ["./cmatrix"]
|