Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@f440
Created December 15, 2019 07:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save f440/1647c1d1b1e8e7cfdb19a7083325778f to your computer and use it in GitHub Desktop.
Save f440/1647c1d1b1e8e7cfdb19a7083325778f to your computer and use it in GitHub Desktop.
docker image for awscli
FROM alpine:3.10
RUN apk --no-cache add \
python \
py-pip
RUN pip install --upgrade pip awscli s3cmd
RUN adduser -D aws
USER aws
RUN mkdir /home/aws/.aws
@f440
Copy link
Author

f440 commented Apr 2, 2020

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment