goenv/Dockerfile
xiaoqidun 4489e44c03
All checks were successful
continuous-integration/drone/push Build is passing
fix(更新版本): 更新版本
2022-07-08 00:52:48 +08:00

20 lines
511 B
Docker

# 基础镜像
FROM golang:1.19rc1-bullseye
# 作者信息
LABEL MAINTAINER="xiaoqidun@gmail.com"
# 安装编译工具链
RUN apt-get update \
&& apt-get install -y \
build-essential mingw-w64 \
iproute2 upx-ucl strace lsof htop tmux file zip
# 安装android ndk
COPY android-ndk-r23c /usr/local/android-ndk-r23c
# 环境变量
ENV PATH=$PATH:/usr/local/android-ndk-r23c/toolchains/llvm/prebuilt/linux-x86_64/bin
ENV GO111MODULE=on
ENV GOPROXY=https://goproxy.aite.xyz,direct