1
0

Dockerfile: Made the resulting image more friendly by using ENTRYPOINT

This commit is contained in:
BlueFox 2024-09-21 17:38:03 +02:00
parent d0e251de94
commit db7dd90c84

View File

@ -25,4 +25,5 @@ RUN apk update --no-cache && \
COPY --from=cmatrixbuildimage /cmatrix/cmatrix /cmatrix
USER cmatrix
CMD ["./cmatrix"]
ENTRYPOINT ["./cmatrix"]
CMD ["-akb", "-u 3"]