A sample .NET Core Razor Pages app with root Dockerfile to test out Deelo Cloud.
Deployed to https://deelocloud-aspnetapp.deelo.cloud/ 🚀
The app was created using the dotnet new webapp
template and is the default output for a .NET Core Razor Pages app.
I am using the alpine image and using trimming and various other dotnet publish techniques to keep the image small and fast however the tradeoff is that the docker build command does take longer.
docker build --pull --rm -f "Dockerfile" -t deelocloudaspnetapp:latest "."
docker run --rm -it -p 80:80/tcp deelocloudaspnetapp:latest
curl http://localhost:80
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update any tests as appropriate.