site/Dockerfile
2025-06-22 17:25:44 +02:00

1 line
No EOL
191 B
Docker

FROM python:3.11-slim AS builder WORKDIR /app COPY requirements.txt . RUN pip install --no-cache-dir --upgrade -r requirements.txt COPY . . RUN mkdocs build EXPOSE 80 CMD ["mkdocs", "build"]