add workflow
All checks were successful
Build and Deploy MkDocs / deploy (push) Successful in 25s

This commit is contained in:
Jay
2026-03-03 14:59:32 +00:00
parent 83e759895e
commit cb920fe70f
2 changed files with 21 additions and 31 deletions

View File

@@ -1,10 +1,11 @@
FROM python:3.13-slim
FROM python:3.11-slim
RUN pip install --no-cache-dir \
mkdocs \
mkdocs-material \
mkdocs-minify-plugin
WORKDIR /build
WORKDIR /app
RUN pip install --no-cache-dir mkdocs mkdocs-material mkdocs-minify-plugin
ENTRYPOINT ["mkdocs"]
COPY . .
RUN mkdocs build
CMD ["cp", "-r", "site", "/output"]