add azure-cli

Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
Jess Frazelle 2017-11-03 13:45:03 -04:00
parent d4d87288a1
commit b966c55a9b
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3

19
azure-cli/Dockerfile Normal file
View File

@ -0,0 +1,19 @@
FROM debian:sid
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 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/*
ENTRYPOINT [ "az" ]