Browse code

Dockerfile: update runc binary to v1.3.2

Update the version used in CI and for the static binaries.

- release notes: https://github.com/opencontainers/runc/releases/tag/v1.3.2
- full diff: https://github.com/opencontainers/runc/compare/v1.3.0...v1.3.2

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

Sebastiaan van Stijn authored on 2025/10/29 22:38:17
Showing 2 changed files
... ...
@@ -250,10 +250,11 @@ RUN --mount=source=hack/dockerfile/cli.sh,target=/download-or-build-cli.sh \
250 250
 FROM base AS runc-src
251 251
 WORKDIR /usr/src/runc
252 252
 RUN git init . && git remote add origin "https://github.com/opencontainers/runc.git"
253
-# RUNC_VERSION should match the version that is used by the containerd version
253
+# RUNC_VERSION sets the version of runc to install in the dev-container.
254
+# This version should usually match the version that is used by the containerd version
254 255
 # that is used. If you need to update runc, open a pull request in the containerd
255 256
 # project first, and update both after that is merged.
256
-ARG RUNC_VERSION=v1.3.0
257
+ARG RUNC_VERSION=v1.3.2
257 258
 RUN git fetch -q --depth 1 origin "${RUNC_VERSION}" +refs/tags/*:refs/tags/* && git checkout -q FETCH_HEAD
258 259
 
259 260
 FROM base AS runc-build
... ...
@@ -7,7 +7,7 @@ set -e
7 7
 # The version of runc should match the version that is used by the containerd
8 8
 # version that is used. If you need to update runc, open a pull request in
9 9
 # the containerd project first, and update both after that is merged.
10
-: "${RUNC_VERSION:=v1.3.0}"
10
+: "${RUNC_VERSION:=v1.3.2}"
11 11
 
12 12
 install_runc() {
13 13
 	RUNC_BUILDTAGS="${RUNC_BUILDTAGS:-"seccomp"}"