mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-30 22:34:10 -05:00
7 lines
284 B
Docker
7 lines
284 B
Docker
# The final built image will be based on the standard Verdaccio docker image.
|
|
FROM verdaccio/verdaccio:5
|
|
ADD docker.yaml /verdaccio/conf/config.yaml
|
|
USER root
|
|
RUN npm install --global verdaccio-static-token \
|
|
&& npm install --global verdaccio-auth-memory
|
|
USER $VERDACCIO_USER_UID
|