Files
goenv/DockerfileHK
xiaoqidun 908fde2d54
/ build (DockerfileHK, hkccr.ccs.tencentyun.com/xiaoqidun/goenv:latest, hkccr.ccs.tencentyun.com) (push) Successful in 7m58s
/ build (DockerfileCN, ccr.ccs.tencentyun.com/xiaoqidun/goenv:latest, ccr.ccs.tencentyun.com) (push) Successful in 8m17s
feat(更新版本): 更新Go到1.26.0
2026-02-15 12:03:30 +08:00

20 lines
475 B
Plaintext

# 基础镜像
FROM golang:1.26.0-trixie
# 作者信息
LABEL authors="xiaoqidun"
# 安装编译工具链
RUN apt-get update \
&& apt-get install -y \
build-essential mingw-w64 \
&& rm -rf /var/lib/apt/lists/*
# 安装android ndk
COPY android-ndk-r29 /usr/local/android-ndk-r29
# 环境变量
ENV PATH=$PATH:/usr/local/android-ndk-r29/toolchains/llvm/prebuilt/linux-x86_64/bin
ENV GO111MODULE=on
ENV GOPROXY=https://goproxy.aite.xyz,direct