aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--alpine-awscli/Dockerfile18
1 files changed, 18 insertions, 0 deletions
diff --git a/alpine-awscli/Dockerfile b/alpine-awscli/Dockerfile
new file mode 100644
index 0000000..89aafa7
--- /dev/null
+++ b/alpine-awscli/Dockerfile
@@ -0,0 +1,18 @@
+FROM alpine:latest
+MAINTAINER kballou@devnulllabs.io
+
+ENV AWSCLI_VERSION="1.17.2"
+
+RUN apk -Uuv add \
+ groff \
+ less \
+ python \
+ py-pip && \
+ pip install awscli==${AWSCLI_VERSION} && \
+ apk --purge -v del \
+ py-pip && \
+ rm /var/cache/apk/*
+
+WORKDIR "/tmp"
+
+ENTRYPOINT ["aws"]