diff --git a/Dockerfile b/Dockerfile index 0dee8cec..a3e6f947 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,8 @@ RUN pip install --upgrade pip \ COPY . /app/ RUN python manage.py collectstatic --noinput --clear -RUN python manage.py migrate --noinput +RUN python manage.py makemigrations +RUN python manage.py migrate RUN python manage.py createsuperuser --username "admin" --email "admin@example.com" --password "mysecretpassword" EXPOSE 8000 diff --git a/requirements.txt b/requirements.txt index 6dbf291f..8655c24d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,36 @@ -Django==4.2.6 -wagtail==5.1 +anyascii==0.3.2 +asgiref==3.8.1 +beautifulsoup4==4.12.3 +certifi==2024.7.4 +charset-normalizer==3.3.2 +defusedxml==0.7.1 +Django==4.2.5 +django-filter==24.3 +django-modelcluster==6.3 +django-permissionedforms==0.1 +django-taggit==5.0.1 +django-treebeard==4.7.1 +djangorestframework==3.15.2 +draftjs-exporter==5.0.0 +et-xmlfile==1.1.0 +filetype==1.2.0 +gunicorn==20.0.4 +idna==3.8 +l18n==2021.3 +laces==0.1.1 +openpyxl==3.1.5 +packaging==24.1 +pillow==10.4.0 +pillow_heif==0.18.0 +pytz==2024.1 +requests==2.32.3 +six==1.16.0 +soupsieve==2.6 +sqlparse==0.5.1 +telepath==0.3.1 +typing_extensions==4.12.2 +urllib3==2.2.2 +wagtail==6.2.1 +Willow==1.8.0 +whitenoise==6.0.0 django-widget-tweaks==1.4.5 -whitenoise==6.5.0 -gunicorn==20.1.0 -