This is a sample project to exercise paketo buildpacks and the django framework
https://buildpacks.io/docs/for-platform-operators/how-to/integrate-ci/pack/
Install Python https://docs.python.org/release/3.11.7/
python -m venv venv
source venv/bin/activate
Create Django project
python -m pip install Django
django-admin startproject build
Create app within project
python manage.py startapp polls
pack build polls --builder paketobuildpacks/builder-jammy-full
docker run --interactive --tty --publish 8000:8000 polls manage.py runserver 0.0.0.0:8000
From another terminal:
curl 127.0.0.1:8000/polls/