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 0000000000000000000000000000000000000000..d2c2df8ecefb6be055c32680f5cef78796f0f3f5 --- /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 b127af4ca23cd456484ba52752ccf5cecab2003b..f4777cb25206d0910a5b7363397abc82d8c53f2a 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