签入版本

This commit is contained in:
gitadmin 2025-09-18 22:45:06 +08:00
parent c8f69e554e
commit 1531662d85

View File

@ -22,6 +22,12 @@ WORKDIR /tmp
# 安装必要的系统依赖和配置环境
RUN set -eux; \
\
# 配置阿里云Debian镜像源
echo "deb http://mirrors.aliyun.com/debian/ bookworm main non-free non-free-firmware" > /etc/apt/sources.list; \
echo "deb http://mirrors.aliyun.com/debian/ bookworm-updates main non-free non-free-firmware" >> /etc/apt/sources.list; \
echo "deb http://mirrors.aliyun.com/debian/ bookworm-backports main non-free non-free-firmware" >> /etc/apt/sources.list; \
echo "deb http://mirrors.aliyun.com/debian-security bookworm-security main non-free non-free-firmware" >> /etc/apt/sources.list; \
\
# 更新系统并安装基础工具
apt-get update && \
@ -71,6 +77,10 @@ RUN set -eux; \
echo "=== Go Environment ==="; \
go env && \
\
# 设置GOPROXY为国内镜像加速后续的go get操作
go env -w GOPROXY=https://goproxy.cn,direct; \
go env -w GOSUMDB=off; \
\
# 简单的Go程序编译测试
echo 'package main; import "fmt"; func main() { fmt.Println("Go环境安装成功!") }' > /tmp/test.go && \
go run /tmp/test.go && \