mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-30 22:34:10 -05:00
chore: no lock file on docker
This commit is contained in:
parent
3ea04b22fb
commit
cba68431f7
1 changed files with 2 additions and 2 deletions
|
@ -13,12 +13,12 @@ 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 --pure-lockfile && \
|
yarn install --production=false --no-lockfile && \
|
||||||
yarn lint && \
|
yarn lint && \
|
||||||
yarn code:docker-build && \
|
yarn code:docker-build && \
|
||||||
yarn build:webui && \
|
yarn build:webui && \
|
||||||
yarn cache clean && \
|
yarn cache clean && \
|
||||||
yarn install --production=true --pure-lockfile
|
yarn install --production=true --no-lockfile
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue