Posted 2023-04-21AWSa few seconds read (About 37 words)Installing awscli on an Alpine image🌐 日本語で読むToCA quick memo on how to install awscli on an Alpine image.1234567RUN apk add --no-cache \ python3 \ py3-pip \ && pip3 install --upgrade pip \ && pip3 install --no-cache-dir \ awscli \ && rm -rf /var/cache/apk/*kenzo0107About me