From 9521494addb54ce14f16bbd2ba76b90347a7b82b Mon Sep 17 00:00:00 2001 From: NyxiumYuuki Date: Fri, 28 May 2021 08:51:51 +0200 Subject: [PATCH] Add expose port --- backend/service-authentication/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/service-authentication/Dockerfile b/backend/service-authentication/Dockerfile index b0b4790..198444f 100644 --- a/backend/service-authentication/Dockerfile +++ b/backend/service-authentication/Dockerfile @@ -1,6 +1,7 @@ FROM node:current-slim WORKDIR /app-authentication COPY ["package.json", "package-lock.json*", "./"] -RUN npm install --NODE_ENV +RUN npm install COPY . . +EXPOSE 3000 CMD [ "node", "server.js" ] \ No newline at end of file