Bereite Docusaurus-Deploy mit Docker und eigener Docs-Site vor

This commit is contained in:
2026-04-21 19:45:16 +02:00
parent 8114a8c645
commit 1637d4bd91
12 changed files with 282 additions and 0 deletions

17
docs-site/Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
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;"]