This is a Python base image for Cloudy
Create a Dockerfile:
FROM ghcr.io/cloud-cli/python
ADD . /home/appBuild the app:
docker build -t app-image .
docker run --rm app-imageThe image expects main.py to be present in /home/app to start the application
If a Procfile is present, honcho is used to start the processes.