From 1991544a45502374df85947ef062bd670ca0cd5c Mon Sep 17 00:00:00 2001 From: wonder Date: Fri, 26 Jun 2026 15:27:52 +0800 Subject: [PATCH] fix: use Qiniu Go mirror proxy in Dockerfile for China region --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index a4e57a6..8057b1c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,7 @@ FROM golang:1.24-alpine AS builder WORKDIR /app COPY go.mod go.sum ./ +ENV GOPROXY=https://goproxy.cn,direct RUN go mod download COPY . .