Files
stack/docs/Dockerfile
kert 6c347adc6d
Some checks failed
ci/woodpecker/push/infra-ci Pipeline was successful
coverage 99% coverage
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/push/deploy Pipeline failed
fix deploy image builds: notebooks COPY path, docs pydantic fallback (fix #44)
- notebooks/Dockerfile: fix COPY path for retro-arcade.css to .marimo-config/
- docs/Dockerfile: drop pyproject.toml COPY, use python3 directly
- docs/scripts/export_library.py: remove conf import (hardcode data/bib.sqlite),
  gracefully handle missing pydantic in Docker extract stage
2026-03-13 11:25:01 -04:00

49 lines
1.2 KiB
Docker

# Stage 1: Extract docs from Python source + export bib library
FROM ghcr.io/astral-sh/uv:python3.13-bookworm-slim AS extract
WORKDIR /build
# Copy source code and extraction scripts
COPY src/ src/
COPY docs/scripts/ docs/scripts/
# Extract API docs via griffe (pure AST, no imports)
RUN uv run --with griffe python docs/scripts/extract_docs.py
# Export bibliography (gracefully handles missing bib.sqlite)
COPY data/bib.sqlit[e] data/
RUN python3 docs/scripts/export_library.py
# Stage 2: Build Docusaurus static site
FROM node:22-slim AS build
WORKDIR /docs
# Install dependencies
COPY docs/package.json docs/package-lock.json* ./
# hadolint ignore=DL3016
RUN npm install
# Copy Docusaurus config and source
COPY docs/docusaurus.config.js docs/sidebars.js docs/babel.config.js docs/tsconfig.json ./
COPY docs/src/ src/
COPY docs/static/ static/
COPY docs/docs/ docs/
# Copy generated API docs and library.json from extract stage
COPY --from=extract /build/docs/docs/api/ docs/api/
COPY --from=extract /build/docs/static/library.json static/library.json
RUN npm run build
# Stage 3: Serve with nginx
# hadolint ignore=DL3006
FROM nginx:alpine
COPY --from=build /docs/build /usr/share/nginx/html
COPY docs/nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80