From 365e588d0fbbaf84ab5449e799e856e85c209f0e Mon Sep 17 00:00:00 2001 From: Austin Vazquez Date: Wed, 22 Oct 2025 15:38:21 -0500 Subject: [PATCH] Dockerfile: update containerd binary to v2.2.0 (static binaries and CI only) Signed-off-by: Austin Vazquez --- Dockerfile | 2 +- hack/dockerfile/install/containerd.installer | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 12322d6e5d..af7734fc6f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -163,7 +163,7 @@ RUN git init . && git remote add origin "https://github.com/containerd/container # integration tests. The distributed docker .deb and .rpm packages depend on a # separate (containerd.io) package, which may be a different version as is # specified here. -ARG CONTAINERD_VERSION=v2.1.5 +ARG CONTAINERD_VERSION=v2.2.0 RUN git fetch -q --depth 1 origin "${CONTAINERD_VERSION}" +refs/tags/*:refs/tags/* && git checkout -q FETCH_HEAD FROM base AS containerd-build diff --git a/hack/dockerfile/install/containerd.installer b/hack/dockerfile/install/containerd.installer index 80bb34b50e..24becb6124 100755 --- a/hack/dockerfile/install/containerd.installer +++ b/hack/dockerfile/install/containerd.installer @@ -10,7 +10,7 @@ set -e # as is specified here. # # Generally, the commit specified here should match a tagged release. -: "${CONTAINERD_VERSION:=v2.1.5}" +: "${CONTAINERD_VERSION:=v2.2.0}" install_containerd() ( echo "Install containerd version $CONTAINERD_VERSION"