mirror of
https://github.com/luzifer-docker/awscli.git
synced 2024-11-08 10:20:01 +00:00
13 lines
259 B
Docker
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"]
|