Created
March 17, 2020 20:56
-
-
Save bartv2/1c7d2c26cbd482edc75489bdbca59c44 to your computer and use it in GitHub Desktop.
azure-cli Dockerfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM alpine | |
ENV AZ 2.0.62 | |
RUN apk add -U python3 bash && \ | |
apk add --virtual=build gcc python3-dev musl-dev libffi-dev openssl-dev make && \ | |
pip3 install azure-cli==${AZ} && \ | |
ln -s /usr/bin/python3 /usr/bin/python && \ | |
apk del --purge build |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment