mirror of
https://github.com/luzifer-docker/awscli.git
synced 2024-11-08 10:20:01 +00:00
11 lines
188 B
Docker
11 lines
188 B
Docker
FROM python:2.7-onbuild
|
|
|
|
RUN set -ex \
|
|
&& apt-get update \
|
|
&& apt-get install -y groff \
|
|
&& apt-get autoremove -y
|
|
|
|
VOLUME ["/root/.aws"]
|
|
|
|
ENTRYPOINT ["/usr/local/bin/aws"]
|
|
CMD ["help"]
|