mirror of
https://github.com/xiaoqidun/goenv.git
synced 2025-04-04 19:27:54 +08:00
This commit is contained in:
19
DockerfileCN
Normal file
19
DockerfileCN
Normal file
@ -0,0 +1,19 @@
|
||||
# 基础镜像
|
||||
FROM golang:1.20.5-bookworm
|
||||
|
||||
# 作者信息
|
||||
LABEL MAINTAINER="xiaoqidun@gmail.com"
|
||||
|
||||
# 安装编译工具链
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y \
|
||||
build-essential mingw-w64 \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# 安装android ndk
|
||||
COPY android-ndk-r25c /usr/local/android-ndk-r25c
|
||||
|
||||
# 环境变量
|
||||
ENV PATH=$PATH:/usr/local/android-ndk-r25c/toolchains/llvm/prebuilt/linux-x86_64/bin
|
||||
ENV GO111MODULE=on
|
||||
ENV GOPROXY=https://mirrors.aliyun.com/goproxy/,direct
|
Reference in New Issue
Block a user