From 02ac293692746e5a8ab2e3e2cb1ad7be94c924b2 Mon Sep 17 00:00:00 2001 From: b3nw Date: Fri, 24 Apr 2026 01:48:17 +0000 Subject: [PATCH] Fix build: Try token-only URL format for Gitea dependency --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 38bc0c6..5df254c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ # Use Gitea PAT for private dependencies if provided ARG GITEA_TOKEN RUN if [ -n "$GITEA_TOKEN" ]; then \ - git config --global url."https://b3nw:${GITEA_TOKEN}@gitea.ext.ben.io/".insteadOf "https://gitea.ext.ben.io/"; \ + git config --global url."https://${GITEA_TOKEN}@gitea.ext.ben.io/".insteadOf "https://gitea.ext.ben.io/"; \ fi # Install dependencies