site/Dockerfile
g_it 21f024a6c0
Some checks are pending
lint / runner / vale (push) Waiting to run
Lint / MegaLinter (push) Waiting to run
Attemopting to minify deploy files.
2026-03-14 23:35:53 +01:00

11 lines
254 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
RUN rm ./deploy/sitemap.xml
RUN python minify.py
FROM caddy:alpine
COPY --from=builder /app/deploy /usr/share/caddy
EXPOSE 80