chore(docker): 优化构建环境变量设置

- 移除旧的 GOPROXY 环境变量设置
- 添加 CGO_ENABLED=0 配置以禁用 CGO
- 设置目标操作系统为 linux
- 设置目标架构为 amd64
This commit is contained in:
danial
2025-11-25 21:41:51 +08:00
parent fa2e4f90c5
commit db68283b3b

View File

@@ -7,8 +7,7 @@ WORKDIR /build
COPY .. /build/ COPY .. /build/
# 根据USE_PROXY参数设置环境变量 # 根据USE_PROXY参数设置环境变量
RUN export GOPROXY=https://goproxy.cn,direct; \ RUN export GO111MODULE=on \
export GO111MODULE=on \
&& export CGO_ENABLED=0 \ && export CGO_ENABLED=0 \
&& export GOOS=linux \ && export GOOS=linux \
&& export GOARCH=amd64 \ && export GOARCH=amd64 \