This is an example Python application that uses Django, pip and Docker.
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
Just go to deploy tab and click run.
Enjoy!