2
0
Fork 0
mirror of https://github.com/luzifer-docker/awscli.git synced 2025-01-03 11:36:01 +00:00
awscli/Dockerfile
2016-08-09 17:16:21 +02:00

13 lines
259 B
Docker

FROM python:3.6-alpine
COPY requirements.txt /tmp/
RUN set -ex \
&& pip install --no-cache-dir -r /tmp/requirements.txt \
&& rm /tmp/requirements.txt \
&& apk --update add groff less
VOLUME ["/root/.aws"]
ENTRYPOINT ["/usr/local/bin/aws"]
CMD ["help"]