diff --git a/awscli/Dockerfile b/awscli/Dockerfile index 57f9eef..892dc1d 100644 --- a/awscli/Dockerfile +++ b/awscli/Dockerfile @@ -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 " @@ -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]'; \