From cba68431f77ca45fa15ca310be9abf5f2840db42 Mon Sep 17 00:00:00 2001 From: "Juan Picado @jotadeveloper" Date: Mon, 4 Feb 2019 08:42:51 +0100 Subject: [PATCH] chore: no lock file on docker --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 58a0b3c7a..3fd2e377b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,12 +13,12 @@ WORKDIR /opt/verdaccio-build COPY . . RUN yarn config set registry $VERDACCIO_BUILD_REGISTRY && \ - yarn install --production=false --pure-lockfile && \ + yarn install --production=false --no-lockfile && \ yarn lint && \ yarn code:docker-build && \ yarn build:webui && \ yarn cache clean && \ - yarn install --production=true --pure-lockfile + yarn install --production=true --no-lockfile