Merge pull request #2008 from overleaf/as-package-lock

Switch shrinkwrap to package-lock

GitOrigin-RevId: 672a71f86be700ba995f25a383efe2bdaf8f02b9
This commit is contained in:
Alasdair Smith 2019-08-02 10:47:45 +02:00 committed by sharelatex
parent 7785c7b59e
commit 07e68cbc00
2 changed files with 1 additions and 1 deletions

View file

@ -3,7 +3,7 @@ FROM node:10.15.3 as app
WORKDIR /app
#wildcard as some files may not be in all repos
COPY package.json npm-shrinkwrap.json /app/
COPY package.json package-lock.json /app/
RUN npm install --quiet