From 6438be6074241ff0cb89dac42a415d613d2d0a52 Mon Sep 17 00:00:00 2001 From: Anders Hassis Date: Tue, 25 Oct 2022 09:16:21 +0200 Subject: [PATCH] Lock Python version to 3.10 to avoid issue with Azure CLI missing support --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9808f60..b966b52 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:latest +FROM python:3.10 LABEL "com.github.actions.name"="azure-blob-storage-upload" LABEL "com.github.actions.description"="Uploads assets to Azure Blob Storage"