9 lines
218 B
Docker
Executable file
9 lines
218 B
Docker
Executable file
FROM python:3.13-slim AS builder
|
|
WORKDIR /app
|
|
COPY requirements.txt .
|
|
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
|