Files
notes/ci/mkdocs/Dockerfile
Jay 1209e30858
Some checks failed
Build and Push Static files / deploy (push) Failing after 59s
add workflow
2026-03-03 14:52:27 +00:00

11 lines
154 B
Docker

FROM python:3.13-slim
WORKDIR /docs
RUN pip install --no-cache-dir \
mkdocs \
mkdocs-material \
mkdocs-minify-plugin
ENTRYPOINT ["mkdocs"]