Hey cityhunter25197
Apologies for the late response. I dont have the detailed steps but the steps you find on this link are just as good --> Container Registry & Runtime (Docker Deploys) | Heroku Dev Center
One thing that you will need to take note of is that in the dockerfile… coz of the issue that I mentioned above you will need to change the CMD command. Below is an example of a dockerfile that I used to run the action server at one time #Make sure that the directory has the init.py and action.py files
FROM rasa/rasa:latest-full
WORKDIR /app
ADD . .
ENTRYPOINT []
EXPOSE 5005
CMD $(echo "rasa run actions -p $PORT --debug" | sed 's/=//')
Hope this helps…