mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
51 lines
1.6 KiB
Docker
51 lines
1.6 KiB
Docker
FROM node:9.2.0-alpine@sha256:e174cb4f00bd5aacfe798ad7ee6c2985adceade4f487a9532de2ce8a067f7365
|
|
LABEL maintainer="https://github.com/verdaccio/verdaccio"
|
|
|
|
RUN apk --no-cache add 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 && \
|
|
apk --no-cache add ca-certificates wget && \
|
|
wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://raw.githubusercontent.com/sgerrand/alpine-pkg-glibc/master/sgerrand.rsa.pub && \
|
|
wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.25-r0/glibc-2.25-r0.apk && \
|
|
apk add glibc-2.25-r0.apk
|
|
|
|
ENV APPDIR /usr/local/app
|
|
|
|
WORKDIR $APPDIR
|
|
|
|
ADD . $APPDIR
|
|
|
|
ENV NODE_ENV=production
|
|
|
|
RUN npm config set registry http://registry.npmjs.org/ && \
|
|
yarn global add -s flow-bin@0.52.0 && \
|
|
yarn install --production=false && \
|
|
yarn run lint && \
|
|
yarn run code:build && \
|
|
yarn run build:webui && \
|
|
yarn run test:unit -- --silent true --coverage false --bail && \
|
|
yarn cache clean && \
|
|
yarn install --production=true --pure-lockfile
|
|
|
|
RUN mkdir -p /verdaccio/storage /verdaccio/conf
|
|
|
|
ADD conf/docker.yaml /verdaccio/conf/config.yaml
|
|
|
|
RUN addgroup -S verdaccio && adduser -S -G verdaccio verdaccio && \
|
|
chown -R verdaccio:verdaccio "$APPDIR" && \
|
|
chown -R verdaccio:verdaccio /verdaccio
|
|
|
|
USER verdaccio
|
|
|
|
ENV PORT 4873
|
|
ENV PROTOCOL http
|
|
|
|
EXPOSE $PORT
|
|
|
|
VOLUME ["/verdaccio"]
|
|
|
|
ENTRYPOINT ["/usr/local/bin/dumb-init", "--"]
|
|
|
|
CMD $APPDIR/bin/verdaccio --config /verdaccio/conf/config.yaml --listen $PROTOCOL://0.0.0.0:${PORT}
|