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

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 FROM alpine:latest
LABEL maintainer "Jessie Frazelle <jess@linux.com>" LABEL maintainer "Jessie Frazelle <jess@linux.com>"
@@ -5,9 +13,8 @@ RUN apk --no-cache add \
ca-certificates \ ca-certificates \
groff \ groff \
less \ less \
python \ python3 \
py2-pip \ && pip3 install awscli \
&& pip install awscli \
&& mkdir -p /root/.aws \ && mkdir -p /root/.aws \
&& { \ && { \
echo '[default]'; \ echo '[default]'; \