I am deploying a .Net Core application using Docker Containers.
I was able to push the image successfully using heroku container:push web
heroku container:push web
But ca
I figured out the reason after searching for hours.
Apparently if forgot to call heroku stack:set container.
heroku stack:set container
Now I'm able to deploy and release!