0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-02-03 23:09:17 -05:00
verdaccio/docker-examples/v5/plugins/docker-extend/Dockerfile

17 lines
366 B
Text
Raw Normal View History

# run yarn docker to get this tag
FROM verdaccio/verdaccio:local
USER root
# Comment out for better performance
# ENV NODE_ENV=production
RUN yarn config set enableProgressBars true && \
yarn config set enableTelemetry true && \
yarn config set enableGlobalCache false && \
yarn install && \
yarn add verdaccio-aws-s3-storage
USER verdaccio