This commit is contained in:
2019-04-30 19:02:51 -04:00
commit b20f6c6268
2 changed files with 56 additions and 0 deletions

21
Dockerfile Normal file
View File

@@ -0,0 +1,21 @@
FROM python:alpine
LABEL maintainer="Julien Cabillot <dockerimages@cabillot.eu>"
ARG CLI_VERSION=1.16.148
RUN apk --no-cache upgrade && \
apk --no-cache add --virtual build-dependencies \
groff \
jq \
less && \
pip install --no-cache-dir awscli==${CLI_VERSION} && \
apk del build-dependencies && \
rm -rf /usr/lib/ruby/gems/*/cache/* \
/var/cache/apk/* \
/tmp/* \
/var/tmp/*
WORKDIR /data
# TODO: entrypoint
#ENTRYPOINT ["aws]