From b31fe9c7c126382d50a3bbd7d9a7ee93dbe2593f Mon Sep 17 00:00:00 2001 From: Tony Marsella Date: Fri, 19 May 2023 13:58:10 -0700 Subject: [PATCH] Added step to expose port 3000 to host --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 77ecb03..dc70deb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,4 +32,6 @@ COPY --from=build-stage /app/public ./public COPY --from=build-stage /app/styles ./styles COPY --from=build-stage /app/node_modules ./node_modules +EXPOSE 3000 + CMD ["npm", "start"] \ No newline at end of file