mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-06 22:40:26 -05:00
9cf5cee4fd
* docs: copy docker examples v4 * docs: copy docker examples v4 * chore: update ignore files
15 lines
548 B
Docker
15 lines
548 B
Docker
FROM verdaccio/verdaccio:4
|
|
|
|
USER root
|
|
|
|
ENV NODE_ENV=production
|
|
|
|
## perhaps all of this is not fully required
|
|
RUN apk --no-cache add openssl ca-certificates wget && \
|
|
apk --no-cache add g++ gcc libgcc libstdc++ linux-headers make python && \
|
|
wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub && \
|
|
wget -q https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.25-r0/glibc-2.25-r0.apk && \
|
|
apk add glibc-2.25-r0.apk
|
|
|
|
RUN npm i && npm install verdaccio-aws-s3-storage
|
|
USER verdaccio
|