From 37adb56118f21c4a94896cc2be086301e07a2940 Mon Sep 17 00:00:00 2001 From: David Stevens Date: Mon, 10 Jun 2024 11:13:17 +0200 Subject: [PATCH] fix: Set prodzilla as docker entrypoint --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c3a764d..4bde552 100644 --- a/Dockerfile +++ b/Dockerfile @@ -83,4 +83,4 @@ COPY --from=build /bin/$APP_NAME /bin/ EXPOSE 3000 # What the container should run when it is started. -CMD ["/bin/$APP_NAME"] +ENTRYPOINT ["/bin/$APP_NAME"]