From 11fa9ad243e4f0670b1957a396d6da96d380f164 Mon Sep 17 00:00:00 2001 From: Andreas Johannsen Date: Mon, 27 Apr 2026 15:47:20 +0200 Subject: [PATCH] fix: remove --strict from mkdocs build (multirepo link warnings) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d721a49..4be39c8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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