skip to Main Content

Docker – Azure Functions in a Container: 0 functions found

How do I get Azure Functions to correctly run my .NET function from a container? Example repo that reproduces the concern: https://github.com/robrich/azure-functions Public image built from the code above: robrich.azurecr.io/func1:0cc2c12e5da12319faf50750783063130c4daf35-main I've run the tutorial from https://learn.microsoft.com/en-us/azure/azure-functions/functions-how-to-custom-container using the Azure Functions…

VIEW QUESTION

How to fix worker runtime metadata for Azure .net8 isolated worker model functions?

I have upgraded a .net6 Azure function (using an App Service plan, not Consumption) to an isolated .net8 function. All my assemblies have <TargetFramework>net8.0</TargetFramework> The function project has also <AzureFunctionsVersion>v4</AzureFunctionsVersion> <OutputType>Exe</OutputType> and also <ItemGroup> <Using Include="System.Threading.ExecutionContext" Alias="ExecutionContext" /> </ItemGroup> (…

VIEW QUESTION
Back To Top
Search