awscli/Dockerfile

14 lines
257 B
Text
Raw Normal View History

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