From 4a73f811958c9468f120d38d24845bbec3f28df0 Mon Sep 17 00:00:00 2001 From: brother7 <7brother7@gmail.com> Date: Tue, 14 Jul 2026 19:15:13 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9dockerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/Dockerfile b/server/Dockerfile index 3789ccf..101100e 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -1,4 +1,6 @@ FROM golang:1.26.3-alpine AS build +ARG GOPROXY=https://goproxy.cn,direct +ENV GOPROXY=${GOPROXY} WORKDIR /src COPY go.mod go.sum* ./ RUN go mod download