awscli/Dockerfile

14 lines
257 B
Docker
Raw Permalink Normal View History

FROM python:3-alpine
2016-08-09 15:11:33 +00:00
COPY requirements.txt /tmp/
2016-06-24 20:38:54 +00:00
RUN set -ex \
2016-08-09 15:11:33 +00:00
&& pip install --no-cache-dir -r /tmp/requirements.txt \
&& rm /tmp/requirements.txt \
&& apk --update add groff less
2016-06-24 20:38:54 +00:00
VOLUME ["/root/.aws"]
ENTRYPOINT ["/usr/local/bin/aws"]
CMD ["help"]