mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 03:21:28 +01:00
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:
parent
10cf8b8945
commit
c15f85686b
|
@ -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]'; \
|
||||||
|
|
Loading…
Reference in New Issue
Block a user