Add command (test)
This commit is contained in:
parent
4d7bac9872
commit
817d253147
2 changed files with 4 additions and 2 deletions
|
|
@ -2,4 +2,5 @@ FROM node:current-slim
|
|||
WORKDIR /app-authentication
|
||||
COPY ["package.json", "package-lock.json*", "./"]
|
||||
RUN npm install
|
||||
COPY . .
|
||||
COPY . .
|
||||
CMD node server.js
|
||||
|
|
@ -2,4 +2,5 @@ FROM node:current-slim
|
|||
WORKDIR /app-message
|
||||
COPY ["package.json", "package-lock.json*", "./"]
|
||||
RUN npm install --NODE_ENV
|
||||
COPY . .
|
||||
COPY . .
|
||||
CMD node server.js
|
||||
Reference in a new issue