Compare commits

...

2 Commits

Author SHA1 Message Date
xiaoqidun 064a5a4369 style(微调注释): 微调注释
/ build (DockerfileCN, ccr.ccs.tencentyun.com/xiaoqidun/goenv:latest, ccr.ccs.tencentyun.com) (push) Has been cancelled
/ build (DockerfileHK, hkccr.ccs.tencentyun.com/xiaoqidun/goenv:latest, hkccr.ccs.tencentyun.com) (push) Has been cancelled
2026-03-05 18:37:32 +08:00
xiaoqidun d708c93086 style(微调注释): 微调注释 2026-03-05 18:36:23 +08:00
2 changed files with 7 additions and 7 deletions
+4 -4
View File
@@ -4,20 +4,20 @@ FROM debian:trixie-slim
# 作者信息
LABEL authors="xiaoqidun"
# 使用中国软件
# 中科大
RUN sed -i "s|deb.debian.org|mirrors.ustc.edu.cn|g" /etc/apt/sources.list.d/debian.sources
# 安装编译工具
# 编译工具
RUN apt-get update \
&& apt-get install -y \
build-essential mingw-w64 \
autoconf libtool pkgconf git \
&& rm -rf /var/lib/apt/lists/*
# 安装go-legacy-win7
# 安装 Go
COPY go-legacy-win7 /usr/local/go-legacy-win7
# 安装android ndk
# 安装 NDK
COPY android-ndk-r29 /usr/local/android-ndk-r29
# 环境变量
+3 -3
View File
@@ -4,17 +4,17 @@ FROM debian:trixie-slim
# 作者信息
LABEL authors="xiaoqidun"
# 安装编译工具
# 编译工具
RUN apt-get update \
&& apt-get install -y \
build-essential mingw-w64 \
autoconf libtool pkgconf git \
&& rm -rf /var/lib/apt/lists/*
# 安装go-legacy-win7
# 安装 Go
COPY go-legacy-win7 /usr/local/go-legacy-win7
# 安装android ndk
# 安装 NDK
COPY android-ndk-r29 /usr/local/android-ndk-r29
# 环境变量