mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
63542a170e
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
19 lines
394 B
Docker
19 lines
394 B
Docker
FROM python:3-alpine
|
|
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
|
|
|
RUN apk add --no-cache \
|
|
bash
|
|
|
|
RUN set -x \
|
|
&& apk add --no-cache --virtual .build-deps \
|
|
build-base \
|
|
libffi-dev \
|
|
openssl-dev \
|
|
&& pip install --upgrade \
|
|
--pre azure-cli \
|
|
--extra-index-url https://azurecliprod.blob.core.windows.net/edge \
|
|
--no-cache-dir \
|
|
&& apk del .build-deps
|
|
|
|
ENTRYPOINT [ "az" ]
|