From 25649b37e5d2d28441137e964b9d6057c45e1070 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Wed, 11 Dec 2024 21:48:09 +0100 Subject: [PATCH] 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 (cherry picked from commit 6638c880a92f4caf10f7c6a724e4b490e7f8db25) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7be38bfd7669..abbb6bde57be 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile-upstream:master -ARG RUNC_VERSION=v1.2.2 +ARG RUNC_VERSION=v1.2.3 ARG CONTAINERD_VERSION=v2.0.0 # CONTAINERD_ALT_VERSION_... defines fallback containerd version for integration tests ARG CONTAINERD_ALT_VERSION_17=v1.7.23