Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 521 Bytes

File metadata and controls

27 lines (17 loc) · 521 Bytes

Python base image

This is a Python base image for Cloudy

Usage

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

Zero-config

The image expects main.py to be present in /home/app to start the application

Procfile

If a Procfile is present, honcho is used to start the processes.