mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-20 22:52:46 -05:00
04b19262d0
* docs: relocate docker-examples to 5.x * chore: update readme * chore: remove license we have already one at root
10 lines
213 B
Docker
Executable file
10 lines
213 B
Docker
Executable file
FROM nginx
|
|
|
|
COPY cert.crt /etc/nginx/cert.crt
|
|
COPY cert.key /etc/nginx/cert.key
|
|
COPY nginx-default.conf /etc/nginx/conf.d/default.conf
|
|
COPY run.sh /run.sh
|
|
|
|
ENV REMOTE_URL="http://localhost:8080/"
|
|
|
|
CMD ["/run.sh"]
|