From 1b110136b79160847705630360d13877cf1d5f1a Mon Sep 17 00:00:00 2001 From: Ashwin Hendre <112116232+AshwinHIBM@users.noreply.github.com> Date: Sun, 28 Jun 2026 22:02:31 +0530 Subject: [PATCH] Create a Containerfile for periodic containerd jobs --- images/containerd/Containerfile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 images/containerd/Containerfile diff --git a/images/containerd/Containerfile b/images/containerd/Containerfile new file mode 100644 index 00000000..18e422e3 --- /dev/null +++ b/images/containerd/Containerfile @@ -0,0 +1,15 @@ +# Containerfile for test-containerd scripts +FROM public.ecr.aws/docker/library/debian:bookworm + +# Install required packages that are not present in Linux by default +RUN apt-get update && apt-get install -y \ + curl \ + wget \ + openssh-client \ + && rm -rf /var/lib/apt/lists/* + +RUN curl -fsSL https://clis.cloud.ibm.com/install/linux | sh \ + && ibmcloud plugin install power-iaas \ + && ibmcloud plugin install cloud-object-storage + +WORKDIR /workspace \ No newline at end of file