April 15, 2025
docker on Heroku (with your Go project)
Simple as this: heroku create app-name-here heroku stack:set container git push heroku master Now you will get an error that you need `heroku.yml` file. Make a heroku.yml file in the same directory of `Dockerfile` (which is normally just base directory) build: docker: web: Dockerfile In this case, there is no "run" part in this heroku....
Read more