mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
fix azure-cli
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
parent
4c453b48dc
commit
63542a170e
|
@ -1,19 +1,18 @@
|
|||
FROM debian:jessie
|
||||
FROM python:3-alpine
|
||||
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
apt-transport-https \
|
||||
ca-certificates \
|
||||
gnupg \
|
||||
--no-install-recommends \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
RUN apk add --no-cache \
|
||||
bash
|
||||
|
||||
RUN apt-key adv --keyserver packages.microsoft.com --recv-keys 52E16F86FEE04B979B07E28DB02C46DF417A0893 \
|
||||
&& echo "deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ wheezy main" >> /etc/apt/sources.list.d/azure-cli.list
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
azure-cli \
|
||||
--no-install-recommends \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
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" ]
|
||||
|
|
Loading…
Reference in New Issue
Block a user