6 Commits

Author SHA1 Message Date
endial 464f6d0551 feat: 更新依赖镜像TAG[SKIP CI] 2026-01-20 16:18:45 +08:00
endial 1a9dcd9498 feat: 更新 Submodule 版本,支持单段纯数字分支生成标签 2026-01-20 14:05:27 +08:00
endial 2cf9d48f18 fix: 更新依赖镜像tag
ci/woodpecker/push/woodpecker Pipeline was successful
2026-01-20 11:07:50 +08:00
endial 35720279c2 feat: 删除Dockerfile中的架构参数
ci/woodpecker/push/woodpecker Pipeline failed
2026-01-20 10:58:08 +08:00
endial 79a491e499 feat: 更新本地编译脚本 2026-01-20 10:58:02 +08:00
endial 2aa9c53d12 feat: 更新应用版本为 v1.25.5
ci/woodpecker/push/woodpecker Pipeline was successful
2026-01-16 17:04:21 +08:00
3 changed files with 7 additions and 7 deletions
+4 -4
View File
@@ -19,13 +19,13 @@
# 软件包本地服务器: http://pkgs.colovu.com/dist
ARG APP_NAME=go
ARG APP_VER=1.24.11
ARG APP_VER=1.25.5
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:v13 AS builder
# 声明需要使用的全局可变参数
ARG APP_NAME
@@ -35,8 +35,8 @@ ARG LOCAL_URL
ARG TARGETARCH
# 下载并解压软件包
# https://golang.google.cn/dl/go1.24.11.linux-amd64.tar.gz
# https://golang.google.cn/dl/go1.24.11.linux-arm64.tar.gz
# https://golang.google.cn/dl/go1.25.5.linux-amd64.tar.gz
# https://golang.google.cn/dl/go1.25.5.linux-arm64.tar.gz
RUN set -eux; \
case "$TARGETARCH" in \
amd64) appArch=x64 ;; \
+2 -2
View File
@@ -9,7 +9,7 @@
**Golang 版本信息:**
- 1.24.11
- 1.25.5
**镜像信息:**
@@ -30,7 +30,7 @@ $ docker run -it --rm swr.cn-north-4.myhuaweicloud.com/colovu/golang:latest go v
## 更新记录
- 2026/1/16: 添加 Golang 版本为 1.24.11
- 2026/1/16: 添加 Golang 版本为 1.25.5
----