website/Containerfile
ndsboy 0f02f367f5
Some checks failed
deploy / deploy (push) Failing after 1m15s
feat: use npm
2025-03-19 20:12:13 +00:00

12 lines
No EOL
356 B
Docker

FROM docker.io/library/node AS build
COPY . .
ENV ASTRO_TELEMETRY_DISABLED=true
RUN npm install
RUN npm run build
FROM git.swablab.de/swablab/documents AS documents
FROM docker.io/nginxinc/nginx-unprivileged
COPY ./nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=build ./dist /usr/share/nginx/html
COPY --from=documents / /usr/share/nginx/html/docs