From 1784a2c778183c3fc75431188fcf7ec9ea48584f Mon Sep 17 00:00:00 2001 From: openeuler_bot Date: Sun, 17 Aug 2025 01:48:36 +0000 Subject: [PATCH] 24.03-lts-sp1 update containerd to 2.1.4 --- .../containerd/2.1.4/24.03-lts-sp1/Dockerfile | 20 +++++++++++++++++++ Cloud/containerd/meta.yml | 4 +++- 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 Cloud/containerd/2.1.4/24.03-lts-sp1/Dockerfile diff --git a/Cloud/containerd/2.1.4/24.03-lts-sp1/Dockerfile b/Cloud/containerd/2.1.4/24.03-lts-sp1/Dockerfile new file mode 100644 index 00000000..d2c2df8e --- /dev/null +++ b/Cloud/containerd/2.1.4/24.03-lts-sp1/Dockerfile @@ -0,0 +1,20 @@ +ARG BASE=openeuler/openeuler:24.03-lts-sp1 +FROM ${BASE} + +ARG TARGETARCH +ARG VERSION=2.1.4 + +RUN dnf update -y \ + && dnf install -y wget \ + && dnf clean all \ + && rm -rf /var/cache/dnf + +WORKDIR /usr/local/containerd + +RUN wget https://github.com/containerd/containerd/releases/download/v${VERSION}/containerd-${VERSION}-linux-${TARGETARCH}.tar.gz \ + && tar -zxvf containerd-${VERSION}-linux-${TARGETARCH}.tar.gz \ + && rm -f containerd-${VERSION}-linux-${TARGETARCH}.tar.gz + +WORKDIR /usr/local/containerd/bin + +CMD ["./containerd", "--help"] \ No newline at end of file diff --git a/Cloud/containerd/meta.yml b/Cloud/containerd/meta.yml index b127af4c..f4777cb2 100644 --- a/Cloud/containerd/meta.yml +++ b/Cloud/containerd/meta.yml @@ -1,2 +1,4 @@ 2.1.1-oe2403sp1: - path: 2.1.1/24.03-lts-sp1/Dockerfile \ No newline at end of file + path: 2.1.1/24.03-lts-sp1/Dockerfile +2.1.4-oe2403sp1: + path: 2.1.4/24.03-lts-sp1/Dockerfile \ No newline at end of file -- Gitee