From 5117d7da5c4fa6bebfa0a23c147f84d1c743a510 Mon Sep 17 00:00:00 2001 From: westey <164392973+westey-m@users.noreply.github.com> Date: Tue, 7 Oct 2025 11:46:54 +0100 Subject: [PATCH] Add AzureCLI to the dev containers (#1254) --- .devcontainer/devcontainer.json | 3 ++- .devcontainer/dotnet/devcontainer.json | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 7028a65475..f89859638b 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -2,7 +2,8 @@ "name": "Python 3", "image": "mcr.microsoft.com/devcontainers/python:3.13-bullseye", "features": { - "ghcr.io/va-h/devcontainers-features/uv:1": {} + "ghcr.io/va-h/devcontainers-features/uv:1": {}, + "ghcr.io/devcontainers/features/azure-cli:1.2.8": {} }, "postCreateCommand": "bash ./devsetup.sh", "workspaceFolder": "/workspaces/agent-framework/python/", diff --git a/.devcontainer/dotnet/devcontainer.json b/.devcontainer/dotnet/devcontainer.json index 8303b031b3..a10557f981 100644 --- a/.devcontainer/dotnet/devcontainer.json +++ b/.devcontainer/dotnet/devcontainer.json @@ -3,7 +3,8 @@ "image": "mcr.microsoft.com/devcontainers/dotnet:9.0", "features": { "ghcr.io/devcontainers/features/dotnet:2.4.0": {}, - "ghcr.io/devcontainers/features/powershell:1.5.1": {} + "ghcr.io/devcontainers/features/powershell:1.5.1": {}, + "ghcr.io/devcontainers/features/azure-cli:1.2.8": {} }, "workspaceFolder": "/workspaces/agent-framework/dotnet/", "customizations": {