Dockerfile: update containerd binary to v2.2.0 (static binaries and CI only)

Signed-off-by: Austin Vazquez <austin.vazquez@docker.com>
This commit is contained in:
Austin Vazquez
2025-10-22 15:38:21 -05:00
parent d166f42ef2
commit 365e588d0f
2 changed files with 2 additions and 2 deletions

View File

@@ -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 # integration tests. The distributed docker .deb and .rpm packages depend on a
# separate (containerd.io) package, which may be a different version as is # separate (containerd.io) package, which may be a different version as is
# specified here. # 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 RUN git fetch -q --depth 1 origin "${CONTAINERD_VERSION}" +refs/tags/*:refs/tags/* && git checkout -q FETCH_HEAD
FROM base AS containerd-build FROM base AS containerd-build

View File

@@ -10,7 +10,7 @@ set -e
# as is specified here. # as is specified here.
# #
# Generally, the commit specified here should match a tagged release. # Generally, the commit specified here should match a tagged release.
: "${CONTAINERD_VERSION:=v2.1.5}" : "${CONTAINERD_VERSION:=v2.2.0}"
install_containerd() ( install_containerd() (
echo "Install containerd version $CONTAINERD_VERSION" echo "Install containerd version $CONTAINERD_VERSION"