From c9e6a3f79bf1001173adc564b70ad6cacb361d79 Mon Sep 17 00:00:00 2001 From: "Juan Picado @jotadeveloper" Date: Mon, 4 Feb 2019 08:00:06 +0100 Subject: [PATCH] chore(docker): update Node.js to 10.15.1 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 56c599876..25bcf8666 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 && \