1
0

Compare commits

..

2 Commits

View File

@ -19,7 +19,11 @@ FROM alpine
LABEL org.opencontainers.image.authors="bluefox@privacynerd.de"
RUN apk update --no-cache && apk add --no-cache ncurses-terminfo-base
RUN apk update --no-cache && \
apk add --no-cache ncurses-terminfo-base && \
adduser -g "cmatrix" -s /usr/sbin/nologin -D -H cmatrix
COPY --from=cmatrixbuildimage /cmatrix/cmatrix /cmatrix
CMD ["./cmatrix"]
USER cmatrix
ENTRYPOINT ["./cmatrix"]
CMD ["-akb", "-u 3"]