From 473c880015a519f079d0a65b4f3a4d9672d43b43 Mon Sep 17 00:00:00 2001 From: Samuel Laferriere Date: Fri, 6 Sep 2024 13:42:47 -0700 Subject: [PATCH] BREAKING suggestion: change dockerfile to use entrypoint instead of cmd (#116) breaking: change dockerfile to use entrypoint instead of cmd --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 215bfac..fd6979f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,4 +32,4 @@ COPY --from=builder /app/resources/ /app/resources/ EXPOSE 4242 7300 # Run app -CMD ["./eigenda-proxy"] \ No newline at end of file +ENTRYPOINT ["./eigenda-proxy"] \ No newline at end of file