Skip to content

Commit 67811b5

Browse files
authored
chore: fixed kaniko executor version (#2342)
1 parent 754e14b commit 67811b5

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99

1010
**云原生 builder 镜像** 是基于 [pack](https://github.com/buildpacks/pack) 命令打包而成的构建镜像,其通过内嵌 buildpacks 来满足多种编程语言的构建需求。项目当前共实现了两种 “builder 镜像”:
1111

12-
- **heroku**:基于 [heroku-18](https://github.com/heroku/base-images/tree/v149/heroku-24) 镜像, 底层镜像是 ubuntu:noble
12+
- **heroku**:基于 [heroku-24](https://github.com/heroku/base-images/tree/v149/heroku-24) 镜像底层镜像是 ubuntu:noble
1313
- 目录:`cloudnative-buildpacks/builders/heroku-builder`
1414

1515
其中,heroku builder 镜像所使用的 buildpack 在原有代码上做了一些改动,维护在 `heroku-buildpacks` 目录中:
1616

17-
- `bk-buildpack-python`:Python 语言, 基于 heroku-buildpack-python
18-
- `bk-buildpack-nodejs`:Node.js 语言, 基于 heroku-buildpack-nodejs
19-
- `bk-buildpack-go`:Go 语言, 基于 heroku-buildpack-go
17+
- `bk-buildpack-python`:Python 语言基于 heroku-buildpack-python
18+
- `bk-buildpack-nodejs`:Node.js 语言基于 heroku-buildpack-nodejs
19+
- `bk-buildpack-go`:Go 语言基于 heroku-buildpack-go
2020

2121
## 开发说明
2222

kaniko-shim/docker-build/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ COPY ./Makefile ./Makefile
1515
RUN make build
1616

1717
# ------------------------------- runner container -------------------------------
18-
FROM gcr.io/kaniko-project/executor:latest
18+
FROM gcr.io/kaniko-project/executor:v1.24.0
1919

2020
RUN --mount=from=busybox:musl,dst=/busybox/ ["/busybox/bin/sh", "-c", "/busybox/bin/mkdir -p /tmp && /busybox/bin/chmod 777 /tmp"]
2121

kaniko-shim/docker-build/Dockerfile_debug

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ FROM busybox:musl as busybox
1919

2020

2121
# ------------------------------- runner container -------------------------------
22-
FROM gcr.io/kaniko-project/executor:latest
22+
FROM gcr.io/kaniko-project/executor:v1.24.0
2323

2424
RUN --mount=from=busybox:musl,dst=/busybox/ ["/busybox/bin/sh", "-c", "/busybox/bin/mkdir -p /tmp && /busybox/bin/chmod 777 /tmp"]
2525

kaniko-shim/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/TencentBlueking/bkpaas/kaniko-shim
22

3-
go 1.22.8
3+
go 1.23.8
44

55
require (
66
github.com/go-logr/logr v1.2.4

0 commit comments

Comments
 (0)