From f9ca1cc1f385317a558bc35b3a3fc96af22665e4 Mon Sep 17 00:00:00 2001 From: Matthew Henderson Date: Thu, 13 Jun 2024 15:33:10 -0700 Subject: [PATCH] Correcting in-process model tag format (#3702) --- src/Azure.Functions.Cli/StaticResources/Dockerfile.dotnet8 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Azure.Functions.Cli/StaticResources/Dockerfile.dotnet8 b/src/Azure.Functions.Cli/StaticResources/Dockerfile.dotnet8 index 138bdbe91..4b639ea52 100644 --- a/src/Azure.Functions.Cli/StaticResources/Dockerfile.dotnet8 +++ b/src/Azure.Functions.Cli/StaticResources/Dockerfile.dotnet8 @@ -6,8 +6,8 @@ RUN cd /src/dotnet-function-app && \ dotnet publish *.csproj --output /home/site/wwwroot # To enable ssh & remote debugging on app service change the base image to the one below -# FROM mcr.microsoft.com/azure-functions/dotnet:4-dotnet8-appservice -FROM mcr.microsoft.com/azure-functions/dotnet:4-dotnet8 +# FROM mcr.microsoft.com/azure-functions/dotnet:4-dotnet8.0-appservice +FROM mcr.microsoft.com/azure-functions/dotnet:4-dotnet8.0 ENV AzureWebJobsScriptRoot=/home/site/wwwroot \ AzureFunctionsJobHost__Logging__Console__IsEnabled=true