0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-03-11 02:15:57 -05:00

chore: fix docker build behind a corporate proxy

installs full-fledged wget in alpine, so that it honors proxy
environment variables
This commit is contained in:
Diego Louzán 2018-07-19 10:58:29 +02:00
parent 98ec1d4631
commit 4713b2f39a

View file

@ -1,7 +1,7 @@
FROM node:10.3-alpine
LABEL maintainer="https://github.com/verdaccio/verdaccio"
RUN apk --no-cache add openssl && \
RUN apk --no-cache add wget openssl && \
wget -O /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.2.0/dumb-init_1.2.0_amd64 && \
chmod +x /usr/local/bin/dumb-init && \
apk del openssl && \