Files
integration/website/Dockerfile

11 lines
185 B
Docker
Raw Normal View History

FROM node:22-slim AS website-deps
WORKDIR /home/website/
RUN npm install -g npm@11.3.0 && npm cache clean -f
ARG DOCKER_USER
USER ${DOCKER_USER}
ENV npm_config_cache=/tmp/npm-cache