sudo buildah from --name=hello-dotnet microsoft/dotnet:2.2-sdk
sudo buildah copy hello-dotnet *.csproj ./
sudo buildah config --workingdir /app hello-dotnet
sudo buildah run hello-dotnet pwd
sudo buildah run hello-dotnet dotnet restore
sudo buildah copy hello-dotnet . ./
sudo buildah run hello-dotnet dotnet publish -c Release -o out
sudo buildah config --entrypoint '["dotnet","out/dotnet.dll"]' hello-dotnet
sudo buildah commit hello-dotnet hello-dotnet
sudo skopeo copy containers-storage:localhost/hello-dotnet docker-daemon:navigaid/hello-dotnet:latest
docker run -it navigaid/hello-dotnet