This adds Gaufre v2 with source, documentation, examples and built artefacts. Also includes the feedback widget from Messages.
11 lines
185 B
Docker
11 lines
185 B
Docker
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
|