From edae49aeefd701cd84617b1f1d82ff97f723faa4 Mon Sep 17 00:00:00 2001 From: phoenix Date: Fri, 29 May 2026 18:37:20 -0400 Subject: [PATCH] Updated dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c2556bf..8effff8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,8 @@ RUN mkdir -p -m 0700 ~/.ssh && \ ssh-keyscan git.kundeng.us >> ~/.ssh/known_hosts # Configure Git to use SSH for GitHub -RUN git config --global url."ssh://git@git.kundeng.us".insteadOf "https://git.kundeng.us" +RUN git config --global url."git@git.kundeng.us:".insteadOf "https://git.kundeng.us/" && \ + git config --global url."git@git.kundeng.us:".insteadOf "http://git.kundeng.us/" # Set up the Go environment for private modules ENV GOPRIVATE=git.kundeng.us