1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-08 23:25:51 +01:00

chore(docker): update Node.js to 10.15.1

This commit is contained in:
Juan Picado @jotadeveloper 2019-02-04 08:00:06 +01:00
parent 9293df521b
commit c9e6a3f79b
No known key found for this signature in database
GPG Key ID: 18AC54485952D158

@ -1,4 +1,4 @@
FROM node:10.14.1-alpine as builder FROM node:10.15.1-alpine as builder
ENV NODE_ENV=production \ ENV NODE_ENV=production \
VERDACCIO_BUILD_REGISTRY=https://registry.verdaccio.org VERDACCIO_BUILD_REGISTRY=https://registry.verdaccio.org
@ -13,7 +13,7 @@ WORKDIR /opt/verdaccio-build
COPY . . COPY . .
RUN yarn config set registry $VERDACCIO_BUILD_REGISTRY && \ RUN yarn config set registry $VERDACCIO_BUILD_REGISTRY && \
yarn install --production=false && \ yarn install --production=false --pure-lockfile && \
yarn lint && \ yarn lint && \
yarn code:docker-build && \ yarn code:docker-build && \
yarn build:webui && \ yarn build:webui && \