Browse code

Dockerfile: update containerd binary to v1.7.28

- release notes: https://github.com/containerd/containerd/releases/tag/v1.7.28
- full diff: https://github.com/containerd/containerd/v1.7.27...v1.7.28

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

Sebastiaan van Stijn authored on 2025/08/06 20:52:05
Showing 3 changed files
... ...
@@ -163,7 +163,7 @@ RUN git init . && git remote add origin "https://github.com/containerd/container
163 163
 # When updating the binary version you may also need to update the vendor
164 164
 # version to pick up bug fixes or new APIs, however, usually the Go packages
165 165
 # are built from a commit from the master branch.
166
-ARG CONTAINERD_VERSION=v1.7.27
166
+ARG CONTAINERD_VERSION=v1.7.28
167 167
 RUN git fetch -q --depth 1 origin "${CONTAINERD_VERSION}" +refs/tags/*:refs/tags/* && git checkout -q FETCH_HEAD
168 168
 
169 169
 FROM base AS containerd-build
... ...
@@ -168,7 +168,7 @@ ARG GOTESTSUM_VERSION=v1.12.3
168 168
 
169 169
 # GOWINRES_VERSION is the version of go-winres to install.
170 170
 ARG GOWINRES_VERSION=v0.3.3
171
-ARG CONTAINERD_VERSION=v1.7.27
171
+ARG CONTAINERD_VERSION=v1.7.28
172 172
 
173 173
 # Environment variable notes:
174 174
 #  - GO_VERSION must be consistent with 'Dockerfile' used by Linux.
... ...
@@ -15,7 +15,7 @@ set -e
15 15
 # the binary version you may also need to update the vendor version to pick up
16 16
 # bug fixes or new APIs, however, usually the Go packages are built from a
17 17
 # commit from the master branch.
18
-: "${CONTAINERD_VERSION:=v1.7.27}"
18
+: "${CONTAINERD_VERSION:=v1.7.28}"
19 19
 
20 20
 install_containerd() (
21 21
 	echo "Install containerd version $CONTAINERD_VERSION"