goenv/DockerfileCN
xiaoqidun 7e366ab17e
All checks were successful
continuous-integration/drone/push Build is passing
feat(镜像脚本): 更新镜像脚本
2024-07-17 09:04:16 +08:00

23 lines
594 B
Plaintext

# 基础镜像
FROM golang:1.23rc2-bookworm
# 作者信息
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 \
&& rm -rf /var/lib/apt/lists/*
# 安装android ndk
COPY android-ndk-r26d /usr/local/android-ndk-r26d
# 环境变量
ENV PATH=$PATH:/usr/local/android-ndk-r26d/toolchains/llvm/prebuilt/linux-x86_64/bin
ENV GO111MODULE=on
ENV GOPROXY=https://goproxy.cn,direct