From 402d72c85b9a10d33f47b6146b374672c286f87e Mon Sep 17 00:00:00 2001 From: Thomas McWork Date: Fri, 21 Mar 2025 17:36:52 +0100 Subject: [PATCH] refactor: specify the exposed port in the Dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f686cc2..41b3c46 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,4 +39,5 @@ FROM scratch # Copy binary COPY --from=build /cup/target/release/cup /cup -ENTRYPOINT ["/cup"] \ No newline at end of file +EXPOSE 8000 +ENTRYPOINT ["/cup"]