This is an alternative way to dockerize an ASP.NET Core application. The docker file is simpler than the official document like:
https://docs.docker.com/engine/exampl...
On the side, it also simplifies the scenarios for accessing custom NuGet feed.
Here's the docker file if you want to grab and try it for your self:
```dockerfile
FROM mcr.microsoft.com/dotnet/aspnet:5.0
WORKDIR /app
COPY bin/Debug/net5.0/publish .
ENTRYPOINT [ "dotnet", "DirtyContainer.dll" ]
```