feat(升级依赖): 升级依赖
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-09-29 15:35:25 +08:00
parent 5f65de79bb
commit ae2335889f
3 changed files with 30 additions and 11 deletions

View File

@ -4,6 +4,9 @@ FROM golang:1.21.1-bookworm
# 作者信息
LABEL MAINTAINER="xiaoqidun@gmail.com"
# 使用中国软件源
RUN sed -i "s|deb.debian.org|mirrors.ustc.edu.cn|g" /etc/apt/sources.list.d/debian.sources
# 安装编译工具链
RUN apt-get update \
&& apt-get install -y \
@ -11,9 +14,9 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*
# 安装android ndk
COPY android-ndk-r25c /usr/local/android-ndk-r25c
COPY android-ndk-r26 /usr/local/android-ndk-r26
# 环境变量
ENV PATH=$PATH:/usr/local/android-ndk-r25c/toolchains/llvm/prebuilt/linux-x86_64/bin
ENV PATH=$PATH:/usr/local/android-ndk-r26/toolchains/llvm/prebuilt/linux-x86_64/bin
ENV GO111MODULE=on
ENV GOPROXY=https://goproxy.cn,direct