An image containing aws-cli and oc commands
3.4K
This docker image contains aws-cli and oc commands.
The Dockerfile:
ARG AWS_VERSION=2.11.18
# Move oc to aws-cli image
FROM amazon/aws-cli:${AWS_VERSION}
ARG OC_VERSION=4.3
RUN yum install -y tar rsync && yum clean all
RUN curl -L https://mirror.openshift.com/pub/openshift-v4/clients/ocp/stable-${OC_VERSION}/openshift-client-linux.tar.gz -o /tmp/oc.tar.gz \
&& tar xzf /tmp/oc.tar.gz -C /usr/local/bin \
&& rm /tmp/oc.tar.gz \
&& rm /usr/local/bin/kubectl
ENTRYPOINT ["/bin/bash"]
Content type
Image
Digest
sha256:730d90448…
Size
174.8 MB
Last updated
over 3 years ago
docker pull hamedkarbasi/aws-cli-oc