change cmd to entrypoint in Dockerfile

This is so that you can add args without docker assuming you're trying
to override the command
This commit is contained in:
marnixah
2023-06-27 14:00:30 +02:00
parent 2535c21336
commit 78991e6640

View File

@@ -8,4 +8,4 @@ RUN make
FROM debian:bookworm-slim
WORKDIR /app
COPY --from=builder /app/mkp224o .
CMD [ "./mkp224o" ]
ENTRYPOINT [ "./mkp224o" ]