Skip to content

Instantly share code, notes, and snippets.

@akramarev
Created May 25, 2022 21:01
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 akramarev/7373a635ca237f04c8b19f1e69ab12c4 to your computer and use it in GitHub Desktop.
Save akramarev/7373a635ca237f04c8b19f1e69ab12c4 to your computer and use it in GitHub Desktop.
[install aws-cli in an alpine container]
apk add --no-cache \
python3 \
py3-pip \
&& pip3 install --upgrade pip \
&& pip3 install --no-cache-dir \
awscli \
&& rm -rf /var/cache/apk/*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment