1
0

Compare commits

..

No commits in common. "db7dd90c84225ac36fabcf50827b3607a8939026" and "4d94c725a243c40b97f99364d72187b346309e23" have entirely different histories.

View File

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