1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-02-21 07:29:37 +01:00

fix: fix docker build failure due breaking changes in yarn

This commit is contained in:
Juan Picado @jotadeveloper 2017-10-01 15:21:50 +02:00
parent e1c98921d5
commit c62e90f50b
No known key found for this signature in database
GPG Key ID: 18AC54485952D158

@ -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 && \