2024-07-19 19:02:49 +02:00
FROM --platform=${BUILDPLATFORM:-linux/amd64} node:20.15.1-alpine AS builder
2016-05-09 19:19:35 +02:00
2024-07-19 19:02:49 +02:00
ENV NODE_ENV = production \
VERDACCIO_BUILD_REGISTRY = https://registry.npmjs.org \
HUSKY_SKIP_INSTALL = 1 \
CI = true \
HUSKY_DEBUG = 1
2018-07-30 12:08:12 +02:00
2024-07-19 19:02:49 +02:00
RUN apk add --force-overwrite && \
apk --no-cache add openssl ca-certificates wget && \
2022-07-12 22:30:06 +02:00
apk --no-cache add g++ gcc libgcc libstdc++ linux-headers make python3 && \
2018-08-13 23:27:31 +02:00
wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub && \
2022-11-20 10:36:26 +01:00
wget -q https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.35-r0/glibc-2.35-r0.apk && \
apk add --force-overwrite glibc-2.35-r0.apk
2017-07-04 18:10:41 +02:00
2018-07-25 18:48:26 +02:00
WORKDIR /opt/verdaccio-build
COPY . .
2024-07-19 19:02:49 +02:00
## build the project and create a tarball of the project for later
## global installation
RUN yarn config set npmRegistryServer $VERDACCIO_BUILD_REGISTRY && \
yarn config set enableProgressBars true && \
yarn config set enableScripts false && \
yarn install --immutable && \
yarn build
## pack the project
RUN yarn pack --dry-run \
&& yarn pack --out verdaccio.tgz \
&& mkdir -p /opt/tarball \
&& mv /opt/verdaccio-build/verdaccio.tgz /opt/tarball
## clean up and reduce bundle size
RUN rm -Rf /opt/verdaccio-build
FROM node:20.15.1-alpine
LABEL maintainer = "https://github.com/abapPM/abapPM"
2018-07-25 18:48:26 +02:00
2018-07-30 12:08:12 +02:00
ENV VERDACCIO_APPDIR = /opt/verdaccio \
VERDACCIO_USER_NAME = verdaccio \
VERDACCIO_USER_UID = 10001 \
VERDACCIO_PORT = 4873 \
VERDACCIO_PROTOCOL = http
ENV PATH = $VERDACCIO_APPDIR /docker-bin:$PATH \
HOME = $VERDACCIO_APPDIR
WORKDIR $VERDACCIO_APPDIR
2024-07-19 19:02:49 +02:00
# https://github.com/Yelp/dumb-init
2018-07-25 18:48:26 +02:00
RUN apk --no-cache add openssl dumb-init
2018-07-18 14:53:08 +02:00
RUN mkdir -p /verdaccio/storage /verdaccio/plugins /verdaccio/conf
2017-07-18 20:53:37 +02:00
2024-07-19 19:02:49 +02:00
COPY --from= builder /opt/tarball .
USER root
# install verdaccio as a global package so is fully handled by npm
# ensure none dependency is being missing and is prod by default
RUN npm install -g $VERDACCIO_APPDIR /verdaccio.tgz \
## clean up cache
&& npm cache clean --force \
&& rm -Rf .npm/ \
&& rm $VERDACCIO_APPDIR /verdaccio.tgz \
# yarn is not need it after this step
# Also remove the symlinks added in the [`node:alpine` Docker image](https://github.com/nodejs/docker-node/blob/02a64a08a98a472c6141cd583d2e9fc47bcd9bfd/18/alpine3.16/Dockerfile#L91-L92).
&& rm -Rf /opt/yarn-v1.22.19/ /usr/local/bin/yarn /usr/local/bin/yarnpkg
# apm assets and config
2024-07-14 20:10:08 +02:00
ADD abappm /verdaccio/abappm
2024-07-19 19:02:49 +02:00
ADD config.yaml /verdaccio/conf/config.yaml
ADD docker-bin $VERDACCIO_APPDIR /docker-bin
2016-05-09 19:19:35 +02:00
2018-07-30 12:08:12 +02:00
RUN adduser -u $VERDACCIO_USER_UID -S -D -h $VERDACCIO_APPDIR -g " $VERDACCIO_USER_NAME user " -s /sbin/nologin $VERDACCIO_USER_NAME && \
2024-07-19 19:02:49 +02:00
chmod -R +x /usr/local/lib/node_modules/verdaccio/bin/verdaccio $VERDACCIO_APPDIR /docker-bin && \
2018-07-30 12:08:12 +02:00
chown -R $VERDACCIO_USER_UID :root /verdaccio/storage && \
2018-07-25 18:48:26 +02:00
chmod -R g = u /verdaccio/storage /etc/passwd
2017-01-14 21:51:18 +01:00
2018-07-25 18:48:26 +02:00
USER $VERDACCIO_USER_UID
2017-01-14 21:51:18 +01:00
2018-07-25 18:48:26 +02:00
EXPOSE $VERDACCIO_PORT
2016-05-09 19:19:35 +02:00
2018-07-25 18:48:26 +02:00
VOLUME /verdaccio/storage
2016-05-09 19:19:35 +02:00
2018-07-25 18:48:26 +02:00
ENTRYPOINT [ "uid_entrypoint" ]
2017-07-04 18:10:41 +02:00
2024-07-19 19:02:49 +02:00
CMD verdaccio --config /verdaccio/conf/config.yaml --listen $VERDACCIO_PROTOCOL ://0.0.0.0:$VERDACCIO_PORT