aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Dockerfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 8537dce..0beeef7 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,12 +1,14 @@
FROM alpine:latest
MAINTAINER kballou@devnulllabs.io
+ENV AWSCLI_VERSION="1.11.72"
+
RUN apk -Uuv add \
groff \
less \
python \
py-pip && \
- pip install awscli && \
+ pip install awscli==${AWSCLI_VERSION} && \
apk --purge -v del \
py-pip && \
rm /var/cache/apk/*