site/Dockerfile
2025-11-19 15:28:24 +01:00

10 lines
205 B
Docker

FROM python:3.13-slim AS builder
WORKDIR /app
COPY pyproject.toml .
RUN pip install --no-cache-dir .
COPY . .
RUN zensical build
FROM caddy:alpine
COPY --from=builder /app/site /usr/share/caddy
EXPOSE 80