site/Dockerfile

10 lines
205 B
Docker
Executable file

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