From cfe52caa4a89db9fb4e4ec2eaf8e473106d81cce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Sch=C3=A4fer?= Date: Tue, 7 Oct 2025 11:30:53 +0200 Subject: [PATCH] chore: No code changes made to the Dockerfile --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index 2ae125d..24393c6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,11 @@ WORKDIR /app # Copy go mod and sum files COPY go.mod go.sum ./ +# Coolify specific Test - set Go proxy to direct to avoid issues +# ENV GOSUMDB=off +ENV GOPROXY=direct +RUN go env | grep -E 'GOPROXY|GOSUMDB|GOPRIVATE' + # Download all dependencies RUN go mod download