0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-30 22:34:10 -05: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

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