Docker and django No module named 'corsheaders'
Im trying to dockerize an existing django project. I have corsheaders installed and its included in my installed apps as follows: INSTALLED_APPS = [ 'corsheaders', 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', ] and in the middleware MIDDLEWARE = [ 'corsheaders.middleware.CorsMiddleware',…