skip to Main Content

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

JasperReports Server Bitnami Docker Image Running in Azure App Service Custom Web.xml

I am using the Bitnami JasperReports image v8.2.0 from https://hub.docker.com/r/bitnami/jasperreports in a docker container running in an Azure app service. My Docker configuration file is: version: '3.8' services: jasperreports: image: docker.io/bitnami/jasperreports:8.2.0 ports: - "8080:8080" volumes: - 'jasperreports_data:/bitnami/jasperreports' - "${WEBAPP_STORAGE_HOME}/site/wwwroot/config:/bitnami/jasperreports-mounted-conf" environment:…

VIEW QUESTION
Back To Top
Search