From f75538116b9658f4696ea3684e77f57bddfb19de Mon Sep 17 00:00:00 2001 From: Adam Connelly Date: Tue, 22 Oct 2024 15:03:01 +0100 Subject: [PATCH] ci: use latest Alpine Azure CLI image Our Azure CLI versions of the runner image are failing to build currently. It looks like the problem is that Microsoft switched from Alpine to cbl-mariner after v2.63.0. For now I'm pinning to that version since our build process expects Alpine. --- docker-bake.hcl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docker-bake.hcl b/docker-bake.hcl index 563d470..0c7902d 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -13,6 +13,5 @@ target "gcp" { target "azure" { target = "azure" platforms = ["linux/amd64", "linux/arm64"] - args = {"BASE_IMAGE": "mcr.microsoft.com/azure-cli:latest"} + args = {"BASE_IMAGE": "mcr.microsoft.com/azure-cli:2.63.0"} } -