add workflow
Some checks failed
Build and Push Static files / deploy (push) Failing after 59s

This commit is contained in:
Jay
2026-03-03 14:52:27 +00:00
parent 4ba1f4be21
commit 1209e30858
2 changed files with 38 additions and 53 deletions

View File

@@ -1,7 +1,10 @@
FROM python:3.13-slim
WORKDIR /work
WORKDIR /docs
COPY requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir \
mkdocs \
mkdocs-material \
mkdocs-minify-plugin
RUN pip install --no-cache-dir -r /tmp/requirements.txt
ENTRYPOINT ["mkdocs"]