Add awscli dockerfile

This commit is contained in:
drymer 2018-07-22 14:38:48 +02:00
parent 6287612281
commit d8592ffe6a
Signed by: drymer
GPG Key ID: A307D64D5DDFDAAD
1 changed files with 11 additions and 0 deletions

11
aws-cli/Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM alpine:3.7 as production
RUN apk --no-cache add \
ca-certificates \
groff \
less \
python \
py2-pip \
&& pip install awscli
ENTRYPOINT ["aws"]