goenv/Dockerfile

20 lines
510 B
Docker
Raw Normal View History

# 基础镜像
2022-03-16 09:22:07 +08:00
FROM golang:1.18.0-bullseye
# 作者信息
LABEL MAINTAINER="xiaoqidun@gmail.com"
# 安装编译工具链
RUN apt-get update \
&& apt-get install -y \
build-essential mingw-w64 \
2021-09-10 14:00:42 +08:00
iproute2 upx-ucl strace lsof htop tmux file zip
2020-09-22 15:55:02 +08:00
# 安装android ndk
2021-11-07 00:25:44 +08:00
COPY android-ndk-r23b /usr/local/android-ndk-r23b
2020-09-22 15:55:02 +08:00
# 环境变量
2021-11-07 00:25:44 +08:00
ENV PATH=$PATH:/usr/local/android-ndk-r23b/toolchains/llvm/prebuilt/linux-x86_64/bin
ENV GO111MODULE=on
2021-01-16 19:16:38 +08:00
ENV GOPROXY=https://goproxy.aite.xyz,direct