Browse code

Dockerfile: update runc binary to v1.2.3

This is the third patch release of the 1.2.z release branch of runc. It
primarily fixes some minor regressions introduced in 1.2.0.

- Fixed a regression in use of securejoin.MkdirAll, where multiple
runc processes racing to create the same mountpoint in a shared rootfs
would result in spurious EEXIST errors. In particular, this regression
caused issues with BuildKit.
- Fixed a regression in eBPF support for pre-5.6 kernels after upgrading
Cilium's eBPF library version to 0.16 in runc.

full diff: https://github.com/opencontainers/runc/compare/v1.2.2...v1.2.3
release notes: https://github.com/opencontainers/runc/releases/tag/v1.2.3

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

Sebastiaan van Stijn authored on 2024/12/12 05:52:50
Showing 2 changed files
... ...
@@ -290,7 +290,7 @@ RUN git init . && git remote add origin "https://github.com/opencontainers/runc.
290 290
 # that is used. If you need to update runc, open a pull request in the containerd
291 291
 # project first, and update both after that is merged. When updating RUNC_VERSION,
292 292
 # consider updating runc in vendor.mod accordingly.
293
-ARG RUNC_VERSION=v1.2.2
293
+ARG RUNC_VERSION=v1.2.3
294 294
 RUN git fetch -q --depth 1 origin "${RUNC_VERSION}" +refs/tags/*:refs/tags/* && git checkout -q FETCH_HEAD
295 295
 
296 296
 FROM base AS runc-build
... ...
@@ -9,7 +9,7 @@ set -e
9 9
 # the containerd project first, and update both after that is merged.
10 10
 #
11 11
 # When updating RUNC_VERSION, consider updating runc in vendor.mod accordingly
12
-: "${RUNC_VERSION:=v1.2.2}"
12
+: "${RUNC_VERSION:=v1.2.3}"
13 13
 
14 14
 install_runc() {
15 15
 	RUNC_BUILDTAGS="${RUNC_BUILDTAGS:-"seccomp"}"