Adjusts docker-dev setup to match docker-prod setup (#6394)

This commit is contained in:
GabrielInTheWorld 2022-03-28 13:26:07 +02:00 committed by GitHub
parent a6446ce55c
commit 941b0be524
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,8 @@ FROM node:16
WORKDIR /app
COPY package.json .
RUN npm install
COPY package-lock.json .
RUN npm ci
RUN npm run postinstall
COPY . .