site/Dockerfile
2026-02-16 13:00:07 +01:00

9 lines
205 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/deploy /usr/share/caddy
EXPOSE 80