Add expose port
This commit is contained in:
parent
6526791263
commit
9521494add
1 changed files with 2 additions and 1 deletions
|
|
@ -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" ]
|
||||
Reference in a new issue