From 7f75dfd39df94e31d1a3fa0feb9d3e082a545e5a Mon Sep 17 00:00:00 2001 From: Daniel Souza Date: Wed, 5 Jun 2024 14:27:06 -0300 Subject: [PATCH] fix: expose PORT 80 once again --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 1be5332..d686bd2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,4 +8,8 @@ RUN npm install --production # Copy source COPY . ./ +# Ports +ENV PORT 80 +EXPOSE 80 + ENTRYPOINT ["npm", "start"]