Skip to content
This repository was archived by the owner on Sep 21, 2023. It is now read-only.
Merged
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
8 changes: 5 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
FROM alpine:3.4
MAINTAINER colin.hom@coreos.com

RUN apk --update add bash curl less groff jq python py-pip
RUN pip install awscli==1.11.15 s3cmd==1.6.1
RUN mkdir /root/.aws
RUN apk --no-cache --update add bash curl less groff jq python py-pip && \
pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir awscli==1.11.15 s3cmd==1.6.1 https://s3.amazonaws.com/cloudformation-examples/aws-cfn-bootstrap-latest.tar.gz && \
apk del py-pip && \
mkdir /root/.aws