chore(构建脚本): 构建脚本
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone Build is passing

This commit is contained in:
2023-07-06 21:25:58 +08:00
parent 293c42f6d4
commit f42201d3a2
2 changed files with 1 additions and 1 deletions

19
DockerfileHK Normal file
View 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://goproxy.aite.xyz,direct