site/Dockerfile
2026-02-16 12:59:03 +01:00

9 lines
203 B
Docker
Executable file

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