Hi am wondered of how add .net 8.0 runtime.
.NET 7.0 worked perfectly, but the package i want to use needs 8...((
Tried to with ai help, and the solution was:
1.sudo docker build -t custom-dotnet-8.0 . (from Dockerfile .NET 8.0 from openruntimes executor github)
2.sudo docker tag custom-dotnet-8.0:latest appwrite/runtime-for-dotnet-8.0:latest
3.Specify the custom Docker image for the .NET 8.0 runtime:
_APP_FUNCTIONS_RUNTIMES=php-8.3,dotnet-8.0
_APP_FUNCTIONS_RUNTIMES_DOCKER_IMAGE_DOTNET_8_0=appwrite/runtime-for-dotnet-8.0:latest
but i think latest step is a kind of mystery...
Much appreciated for your help!