From ebe4e2f8c6ab8499b401653a0f8075a9d073bb03 Mon Sep 17 00:00:00 2001 From: Benjamin Talmard Date: Fri, 27 Apr 2018 00:57:16 +0200 Subject: [PATCH] Add the new signing key for the azure cli package --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ebc628061c..e0894c9306 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,11 +37,12 @@ RUN curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > mic && apt-get update \ && apt-get -y install dotnet-sdk-2.1.2 -# See: https://docs.microsoft.com/en-us/cli/azure/install-azure-cli?view=azure-cli-latest#install-on-debianubuntu-with-apt-get +# See: https://docs.microsoft.com/en-us/cli/azure/install-azure-cli-apt RUN apt-get update \ && apt-get install apt-transport-https \ && echo "deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ wheezy main" > /etc/apt/sources.list.d/azure-cli.list \ && apt-key adv --keyserver packages.microsoft.com --recv-keys 52E16F86FEE04B979B07E28DB02C46DF417A0893 \ + && curl -L https://packages.microsoft.com/keys/microsoft.asc | apt-key add - \ && apt-get update \ && apt-get install azure-cli