0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-27 22:59:51 -05:00

Merge pull request #338 from verdaccio/fix-docker

fix: fix docker build failure due breaking changes in yarn
This commit is contained in:
Juan Picado @jotadeveloper 2017-10-01 15:30:43 +02:00 committed by GitHub
commit 045e973597

View file

@ -15,7 +15,7 @@ ADD . $APPDIR
ENV NODE_ENV=production
RUN npm config set registry http://registry.npmjs.org/ && \
npm install -g -s --no-progress yarn --pure-lockfile && \
npm install -g -s --no-progress yarn@0.28.4 --pure-lockfile && \
yarn install --production=false && \
yarn run build:webui && \
yarn cache clean && \