The purpose of this solution is to present how to use docker on the Heroku platform. Also using github Action.
C#, Heroku, Docker
##Page sample. https://the-wishlist-project.herokuapp.com/swagger/index.html
docker build -t sampleherokucontainer . docker run -d -p 8080:80 --name abc sampleherokucontainer
#Releasing to Heroku
- heroku container:login
- docker build -t sampleherokucontainer .
- heroku container:push -a YourAppName web
- heroku container:release -a YourAppName web