From 30348e9013316a2da2462631f85f3033c887013e Mon Sep 17 00:00:00 2001 From: Dennis Ploeger Date: Tue, 3 Sep 2024 15:00:10 +0200 Subject: [PATCH] fix: Set the Azure image version tag This sets the azure image version tag to the last version that is based on alpine. Newer versions are based on Mariner (which is based on Fedora) so all Features have to be adapted to that. --- flavour/azure/Dockerfile.flavour | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flavour/azure/Dockerfile.flavour b/flavour/azure/Dockerfile.flavour index 23a9d7b..9a4070f 100644 --- a/flavour/azure/Dockerfile.flavour +++ b/flavour/azure/Dockerfile.flavour @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/azure-cli:latest +FROM mcr.microsoft.com/azure-cli:2.63.0 RUN apk add sudo bash curl && \ echo "cloudcontrol ALL=(root)NOPASSWD:/sbin/apk *" > /etc/sudoers.d/cloudcontrol && \