From e83dd6fe63f5cea60a3630664d0c9489b0d485ab Mon Sep 17 00:00:00 2001 From: Julien Poissonnier Date: Thu, 25 Jul 2024 17:26:33 +0200 Subject: [PATCH] Unpin Azure CLI version We had previously pinned `az` to version 2.33.1 to work around an issue with a deprecation warning. The underlying issue in the Azure SDK has since been fixed in https://github.com/pulumi/pulumi-azure-native/issues/1566 --- docker/pulumi/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docker/pulumi/Dockerfile b/docker/pulumi/Dockerfile index 6d342c2e..706e29c7 100644 --- a/docker/pulumi/Dockerfile +++ b/docker/pulumi/Dockerfile @@ -51,8 +51,7 @@ RUN apt-get update -y && \ # Install second wave of dependencies apt-get update -y && \ apt-get install -y \ - # Pin azure-cli to 2.33.1 as workaround for https://github.com/pulumi/pulumi-docker-containers/issues/106 - "azure-cli=2.33.1-1~bullseye" \ + azure-cli \ docker-ce \ google-cloud-sdk \ google-cloud-sdk-gke-gcloud-auth-plugin \