From bf7196618885df6877abb2d894255796286eb0a7 Mon Sep 17 00:00:00 2001 From: Mohamed Faye Date: Tue, 21 Mar 2023 23:45:03 -0400 Subject: [PATCH] Update Dockerfile You forget to add the expose line i added it if not it will not work. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 1b404eb..abc7ab2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,5 +2,6 @@ FROM node:latest WORKDIR /app COPY package.json ./ RUN npm install +EXPOSE 3000 COPY . . CMD ["npm", "start"]