From 52f5426e5a032429bec89095f982b542b2be974c Mon Sep 17 00:00:00 2001 From: Jesse McDonald Date: Fri, 24 Sep 2021 21:45:22 -0500 Subject: [PATCH] set the port for the Docker container explicitly --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index bb756aa..75c111b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,4 +10,5 @@ FROM node:16-alpine MAINTAINER Jesse McDonald WORKDIR /app COPY --from=0 /app . +ENV PORT=80 CMD ["node", "./server.js"]