Skip to content

Instantly share code, notes, and snippets.

@moonape1226
Last active April 26, 2020 03:49
Show Gist options
  • Save moonape1226/7650687169640cc92e9657fad55a7c14 to your computer and use it in GitHub Desktop.
Save moonape1226/7650687169640cc92e9657fad55a7c14 to your computer and use it in GitHub Desktop.
FROM alpine:3.11
RUN apk update
RUN apk add --no-cache bash python3
RUN apk add --no-cache --virtual=build gcc libffi-dev musl-dev openssl-dev python3-dev make
RUN pip3 install azure-cli
RUN pip3 install awscli
RUN apk del --purge build
ENV TZ Asia/Taipei
ENTRYPOINT ["/bin/bash"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment