site/Dockerfile
2026-02-11 17:25:29 +01:00

10 lines
207 B
Docker
Executable file

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