Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions images/containerd/Containerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Containerfile for test-containerd scripts
FROM public.ecr.aws/docker/library/debian:bookworm

Comment thread
AshwinHIBM marked this conversation as resolved.
# 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