From 34136ef6173ae3a85251bec1eae54966a027207e Mon Sep 17 00:00:00 2001 From: salty Date: Tue, 15 Dec 2020 02:57:01 +0100 Subject: [PATCH] build(dockerfile): Expose port 3000. (#278) Allows for automated nginx reverse proxy setups to identify the port used in the container without having to bind the port to the host/localhost. --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index e5198a4b..d157d429 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,3 +21,5 @@ COPY --from=BUILD_IMAGE /app/.next ./.next COPY --from=BUILD_IMAGE /app/node_modules ./node_modules CMD yarn start + +EXPOSE 3000