remove unnecessary command, docker compose already do it
This commit is contained in:
parent
20e8b8d37f
commit
f9e7a866fd
2 changed files with 2 additions and 4 deletions
|
|
@ -2,5 +2,4 @@ FROM node:current-slim
|
|||
WORKDIR /app-authentication
|
||||
COPY ["package.json", "package-lock.json*", "./"]
|
||||
RUN npm install
|
||||
COPY . .
|
||||
CMD [ "node", "server.js" ]
|
||||
COPY . .
|
||||
|
|
@ -2,5 +2,4 @@ FROM node:current-slim
|
|||
WORKDIR /app-message
|
||||
COPY ["package.json", "package-lock.json*", "./"]
|
||||
RUN npm install --NODE_ENV
|
||||
COPY . .
|
||||
CMD [ "node", "server.js" ]
|
||||
COPY . .
|
||||
Reference in a new issue