goenv/Dockerfile
xiaoqidun 4fd6919cc3
All checks were successful
continuous-integration/drone/push Build is passing
feat(新增工具): 镜像添加tmux软件包
2021-04-03 18:26:16 +08:00

20 lines
494 B
Docker

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