fix: remove --strict from mkdocs build (multirepo link warnings)

This commit is contained in:
Andreas Johannsen 2026-04-27 15:47:20 +02:00
parent 014bb8c0d9
commit 11fa9ad243

View file

@ -15,7 +15,7 @@ ARG FORGEJO_TOKEN=""
RUN if [ -n "$FORGEJO_TOKEN" ]; then \
git config --global url."https://x-access-token:${FORGEJO_TOKEN}@git.daelon.cloud/".insteadOf "https://git.daelon.cloud/"; \
fi \
&& mkdocs build --strict --site-dir /site
&& mkdocs build --site-dir /site
FROM nginx:1.27-alpine