1
0
docker-cmatrix/Dockerfile

16 lines
418 B
Docker
Raw Normal View History

2024-09-21 14:36:49 +00:00
FROM alpine
LABEL org.opencontainers.image.authors="bluefox@privacynerd.de"
2024-09-21 14:36:49 +00:00
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
2024-09-21 14:36:49 +00:00
CMD ["./cmatrix"]