From 0a5532f490a0b316fa1bd55c561621632a47f994 Mon Sep 17 00:00:00 2001 From: Shea Stewart Date: Wed, 20 Dec 2023 12:10:29 +0000 Subject: [PATCH] add azure cli to dockerfile --- .gitpod.Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile index b12c8b9..8f636b3 100644 --- a/.gitpod.Dockerfile +++ b/.gitpod.Dockerfile @@ -21,6 +21,10 @@ RUN mv kubectl /usr/local/bin/ RUN curl -Lo /usr/bin/yq "https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64" \ && chmod +x /usr/bin/yq +# Install Azure CLI +RUN curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash + + # Install packages RUN apt-get update && \ apt install -y jq && \