Skip to content

Commit 35f6a78

Browse files
committed
Dockerfile: update runc binary to v1.3.3
Update the version used in CI and for the static binaries. - release notes: https://github.com/opencontainers/runc/releases/tag/v1.3.3 - full diff: opencontainers/runc@v1.3.2...v1.3.3 This release contains fixes for three high-severity security vulnerabilities in runc (CVE-2025-31133, CVE-2025-52565, and CVE-2025-52881). All three vulnerabilities ultimately allow (through different methods) for full container breakouts by bypassing runc's restrictions for writing to arbitrary /proc files. Signed-off-by: Paweł Gronowski <[email protected]>
1 parent 353dc7d commit 35f6a78

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ RUN git init . && git remote add origin "https://github.com/opencontainers/runc.
254254
# This version should usually match the version that is used by the containerd version
255255
# that is used. If you need to update runc, open a pull request in the containerd
256256
# project first, and update both after that is merged.
257-
ARG RUNC_VERSION=v1.3.2
257+
ARG RUNC_VERSION=v1.3.3
258258
RUN git fetch -q --depth 1 origin "${RUNC_VERSION}" +refs/tags/*:refs/tags/* && git checkout -q FETCH_HEAD
259259

260260
FROM base AS runc-build

hack/dockerfile/install/runc.installer

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ set -e
77
# The version of runc should match the version that is used by the containerd
88
# version that is used. If you need to update runc, open a pull request in
99
# the containerd project first, and update both after that is merged.
10-
: "${RUNC_VERSION:=v1.3.2}"
10+
: "${RUNC_VERSION:=v1.3.3}"
1111

1212
install_runc() {
1313
RUNC_BUILDTAGS="${RUNC_BUILDTAGS:-"seccomp"}"

0 commit comments

Comments
 (0)