Skip to content

Commit ec5c9e0

Browse files
committed
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: opencontainers/runc@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>
1 parent 7faa4ec commit ec5c9e0

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
@@ -290,7 +290,7 @@ RUN git init . && git remote add origin "https://github.com/opencontainers/runc.
290290
# that is used. If you need to update runc, open a pull request in the containerd
291291
# project first, and update both after that is merged. When updating RUNC_VERSION,
292292
# consider updating runc in vendor.mod accordingly.
293-
ARG RUNC_VERSION=v1.2.2
293+
ARG RUNC_VERSION=v1.2.3
294294
RUN git fetch -q --depth 1 origin "${RUNC_VERSION}" +refs/tags/*:refs/tags/* && git checkout -q FETCH_HEAD
295295

296296
FROM base AS runc-build

hack/dockerfile/install/runc.installer

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set -e
99
# the containerd project first, and update both after that is merged.
1010
#
1111
# When updating RUNC_VERSION, consider updating runc in vendor.mod accordingly
12-
: "${RUNC_VERSION:=v1.2.2}"
12+
: "${RUNC_VERSION:=v1.2.3}"
1313

1414
install_runc() {
1515
RUNC_BUILDTAGS="${RUNC_BUILDTAGS:-"seccomp"}"

0 commit comments

Comments
 (0)