I use psp to create a Django project and also, a docker image with the Django project that you want develop, step by step...
This is reference that explains Docker image: https://psp.readthedocs.io/en/latest/simple/#dockerpodman
Run this in your shell:
$ psp
info: welcome to psp, version 0.2.0
> Name of Python project: django-scaffold
> Do you want to create a virtual environment? Yes
> Do you want to start git repository? Yes
> Select git remote provider: None
> Do you want unit test files? Yes
> Install dependencies: django django-admin startproject hello_world_django
> Select documentation generator: None
> Do you want to configure tox? No
> Do you want create common files? Yes
> Select license: MIT
> Do you want to install dependencies to publish on pypi? Yes
> Do you want to create a Dockerfile and Containerfile? Yes
info: python project `django-scaffold` created at `/tmp/django-scaffold`
$ cd django-scaffold && docker build django-scaffold