update image to use python3 (#531)

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.
This commit is contained in:
Adam Leskis 2020-05-15 06:49:13 +01:00 committed by GitHub
parent 10cf8b8945
commit c15f85686b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,3 +1,11 @@
# 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>"
@ -5,9 +13,8 @@ RUN apk --no-cache add \
ca-certificates \
groff \
less \
python \
py2-pip \
&& pip install awscli \
python3 \
&& pip3 install awscli \
&& mkdir -p /root/.aws \
&& { \
echo '[default]'; \