goenv/Dockerfile

20 lines
514 B
Docker
Raw Normal View History

# 基础镜像
2022-12-07 14:47:47 +08:00
FROM golang:1.19.4-bullseye
# 作者信息
LABEL MAINTAINER="xiaoqidun@gmail.com"
# 安装编译工具链
RUN apt-get update \
&& apt-get install -y \
build-essential mingw-w64 \
2022-12-07 14:47:47 +08:00
iproute2 upx-ucl strace lsof htop tmux file zip git
2020-09-22 15:55:02 +08:00
# 安装android ndk
2022-09-22 10:56:40 +08:00
COPY android-ndk-r25b /usr/local/android-ndk-r25b
2020-09-22 15:55:02 +08:00
# 环境变量
2022-09-22 10:56:40 +08:00
ENV PATH=$PATH:/usr/local/android-ndk-r25b/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