Build docs with a pre-configured docker
🧪 Test / test (push) Successful in 4m41s

This commit is contained in:
2026-06-20 08:55:48 +02:00
parent 20668d6955
commit 7cb92a4091
3 changed files with 22 additions and 4 deletions
+8
View File
@@ -16,4 +16,12 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
nodejs \
&& rm -rf /var/lib/apt/lists/*
# Pre-install MkDocs dependencies so the docs workflow does not need to pip
# install at runtime. --break-system-packages is required because the Debian
# base marks the environment as externally managed (PEP 668); this is safe in
# a dedicated container image.
COPY docs/requirements.txt /tmp/docs-requirements.txt
RUN pip install --no-cache-dir --break-system-packages -r /tmp/docs-requirements.txt \
&& rm /tmp/docs-requirements.txt
WORKDIR /src