collection.dockerfile/amzn2-awscli2/Dockerfile

10 lines
384 B
Docker
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

FROM amazonlinux:2
LABEL maintainer="racken@racker.tech"
LABEL description="awscli 2.0.9 on amzn2"
LABEL autobuild="jenkins @weekly"
ENV container docker
RUN /usr/bin/yum -y install unzip groff less jq
RUN curl https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip -o /tmp/awscliv2.zip; cd /tmp; unzip -qq awscliv2.zip; ./aws/install
ENV PS1 "awscli "
ENTRYPOINT ["/bin/bash"]