This is a Python base image for Cloudy
Create a Dockerfile:
FROM ghcr.io/cloud-cli/python
ADD . /home/app
Build the app:
docker build -t app-image .
docker run --rm app-image
The 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.