Files
FEDEO/docs-site/Dockerfile
florianfederspiel d704e343fc
All checks were successful
Build and Push Docker Images / verify-docs-sync (push) Successful in 8s
Build and Push Docker Images / build-frontend (push) Successful in 14s
Build and Push Docker Images / build-backend (push) Successful in 14s
Build and Push Docker Images / build-docs (push) Successful in 42s
Behebe Docs-Dockerbuild durch korrekten Build-Pfad
2026-04-22 17:57:15 +02:00

18 lines
389 B
Docker

FROM node:20-alpine AS builder
WORKDIR /app/docs-site
COPY docs-site/package.json docs-site/package-lock.json* ./
RUN npm install
COPY docs-site ./
COPY docs /app/docs
RUN npm run build
FROM nginx:1.27-alpine AS runner
COPY docs-site/nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=builder /app/docs-site/build /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]