feat(更新镜像): 更新镜像
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-11-08 11:36:38 +08:00
parent a1f938c872
commit e764bc1608
3 changed files with 9 additions and 9 deletions

View File

@ -1,5 +1,5 @@
# 基础镜像
FROM golang:1.21.3-bookworm
FROM golang:1.21.4-bookworm
# 作者信息
LABEL MAINTAINER="xiaoqidun@gmail.com"
@ -14,9 +14,9 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*
# 安装android ndk
COPY android-ndk-r26 /usr/local/android-ndk-r26
COPY android-ndk-r26b /usr/local/android-ndk-r26b
# 环境变量
ENV PATH=$PATH:/usr/local/android-ndk-r26/toolchains/llvm/prebuilt/linux-x86_64/bin
ENV PATH=$PATH:/usr/local/android-ndk-r26b/toolchains/llvm/prebuilt/linux-x86_64/bin
ENV GO111MODULE=on
ENV GOPROXY=https://goproxy.cn,direct