3 Commits

Author SHA1 Message Date
endial aaddca8c7a fix: 更新依赖镜像tag
ci/woodpecker/push/woodpecker Pipeline was successful
2026-01-20 11:05:03 +08:00
endial 10ed6b0ab1 feat: 删除Dockerfile中的架构参数
ci/woodpecker/push/woodpecker Pipeline failed
2026-01-20 10:56:55 +08:00
endial 4b8992c828 feat: 更新本地编译脚本 2026-01-20 10:56:48 +08:00
2 changed files with 6 additions and 6 deletions
+4 -4
View File
@@ -19,13 +19,13 @@
# 软件包本地服务器: http://pkgs.colovu.com/dist
ARG APP_NAME=go
ARG APP_VER=1.25.5
ARG APP_VER=1.24.11
ARG REGISTRY_URL="swr.cn-north-4.myhuaweicloud.com/colovu/"
ARG APT_SOURCE=aliyun
ARG LOCAL_URL=""
# 0. 预处理 ======================================================================
FROM ${REGISTRY_URL}debian-builder:13 AS builder
FROM ${REGISTRY_URL}debian-builder:13 as builder
# 声明需要使用的全局可变参数
ARG APP_NAME
@@ -35,8 +35,8 @@ ARG LOCAL_URL
ARG TARGETARCH
# 下载并解压软件包
# https://golang.google.cn/dl/go1.25.5.linux-amd64.tar.gz
# https://golang.google.cn/dl/go1.25.5.linux-arm64.tar.gz
# https://golang.google.cn/dl/go1.24.11.linux-amd64.tar.gz
# https://golang.google.cn/dl/go1.24.11.linux-arm64.tar.gz
RUN set -eux; \
case "$TARGETARCH" in \
amd64) appArch=x64 ;; \
+2 -2
View File
@@ -9,7 +9,7 @@
**Golang 版本信息:**
- 1.25.5
- 1.24.11
**镜像信息:**
@@ -30,7 +30,7 @@ $ docker run -it --rm swr.cn-north-4.myhuaweicloud.com/colovu/golang:latest go v
## 更新记录
- 2026/1/16: 添加 Golang 版本为 1.25.5
- 2026/1/16: 添加 Golang 版本为 1.24.11
----