mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
c15f85686b
python2 has reached end of life, so replacing it with python3. In addition, pip (python3 version) comes along with the python3 install on alpine, so no need to install that explicitly.
28 lines
579 B
Docker
28 lines
579 B
Docker
# Run awscli in a container and list s3 buckets
|
|
#
|
|
# docker run --rm -it \
|
|
# --name awscli \
|
|
# jess/awscli \
|
|
# s3 ls
|
|
#
|
|
|
|
FROM alpine:latest
|
|
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
|
|
|
RUN apk --no-cache add \
|
|
ca-certificates \
|
|
groff \
|
|
less \
|
|
python3 \
|
|
&& pip3 install awscli \
|
|
&& mkdir -p /root/.aws \
|
|
&& { \
|
|
echo '[default]'; \
|
|
echo 'output = json'; \
|
|
echo 'region = $AWS_DEFAULT_REGION'; \
|
|
echo 'aws_access_key_id = $AMAZON_ACCESS_KEY_ID'; \
|
|
echo 'aws_secret_access_key = $AMAZON_SECRET_ACCESS_KEY'; \
|
|
} > /root/.aws/config
|
|
|
|
ENTRYPOINT [ "aws" ]
|