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 changed files with 2 additions and 2 deletions

View File

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