From 78991e6640b638a1c9058897ccce989e2ff9ce4b Mon Sep 17 00:00:00 2001 From: marnixah Date: Tue, 27 Jun 2023 14:00:30 +0200 Subject: [PATCH] change cmd to entrypoint in Dockerfile This is so that you can add args without docker assuming you're trying to override the command --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b62c2c5..e91cfb0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,4 +8,4 @@ RUN make FROM debian:bookworm-slim WORKDIR /app COPY --from=builder /app/mkp224o . -CMD [ "./mkp224o" ] \ No newline at end of file +ENTRYPOINT [ "./mkp224o" ]