This is an example Python application that uses Django, pip and Docker. It is packaged using Codefresh.
More details can be found in the documentation page.
To install dependencies
pip install -r requirements.txt
python -m unittest composeexample.utils
python manage.py runserver 0.0.0.0:8000
....and navigate your browser to http://localhost:8000/
docker build -t django-app .
docker run -p 8000:8000 django-app
There is also a codefresh.yml for easy usage with the Codefresh CI/CD platform.
Enjoy!