Files
notes/ci/mkdocs/Dockerfile
Jay cb920fe70f
All checks were successful
Build and Deploy MkDocs / deploy (push) Successful in 25s
add workflow
2026-03-03 14:59:32 +00:00

12 lines
179 B
Docker

FROM python:3.11-slim
WORKDIR /build
RUN pip install --no-cache-dir mkdocs mkdocs-material mkdocs-minify-plugin
COPY . .
RUN mkdocs build
CMD ["cp", "-r", "site", "/output"]