Skip to content

Instantly share code, notes, and snippets.

@mojodna
Created November 30, 2014 06:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mojodna/2f943e907fea0bd7998b to your computer and use it in GitHub Desktop.
Save mojodna/2f943e907fea0bd7998b to your computer and use it in GitHub Desktop.
Minimalist awscli image w/ aws-cfn-bootstrap installed. Available from http://quay.io/mojodna/awscli
FROM debian
ENV DEBIAN_FRONTEND noninteractive
RUN \
apt-get update && \
apt-get install --no-install-recommends -y python-pip groff-base && \
apt-get clean && \
pip install awscli
RUN \
pip install https://s3.amazonaws.com/cloudformation-examples/aws-cfn-bootstrap-latest.tar.gz
VOLUME /root/.aws
CMD ["aws"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment