From a319e9f878b3b74e145192f1e8ff8a4128c56ac7 Mon Sep 17 00:00:00 2001 From: Aaron Riedel Date: Fri, 2 Feb 2024 11:02:21 +0100 Subject: [PATCH] add EXPOSE statement to Dockerfile to indicate the port --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 17a52ac..4550696 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,3 +12,4 @@ COPY --from=build /app/build /app COPY data /app/data COPY nginx.conf /etc/nginx/nginx.conf HEALTHCHECK CMD curl -fsS -m 10 -o /dev/null http://localhost:8080 +EXPOSE 8080/tcp