website/Containerfile
ndsboy 8dabfd9645
Some checks failed
deploy / deploy (push) Failing after 1m5s
feat: use pnpm everywhere
2025-03-19 20:04:05 +00:00

12 lines
No EOL
354 B
Docker

FROM docker.io/library/node AS build
COPY . .
ENV ASTRO_TELEMETRY_DISABLED=true
RUN pnpm install
RUN pnpm 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