A lightweight task worker in Rust
- Install Heroku CLI
- Login to Heroku
- Login to Heroku Container Registry
heroku login
heroku container:login- Create a Heroku app
heroku create thermite- Build the Docker image
docker build --platform linux/amd64 -t registry.heroku.com/thermite/worker .- Push the Docker image to Heroku Container Registry
docker push registry.heroku.com/thermite/worker- Set the stack to container
heroku stack:set container -a thermite- Release the Docker image
heroku container:release worker -a thermite- Open the Heroku app
heroku open -a thermite- View the logs
heroku logs --tail -a thermite