diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -19,8 +19,7 @@ RUN mkdir -p /app/static/css /app/static/js /app/static/img # Install Python dependencies RUN pip install -U "pip>=24.0.0" && \ pip install -r requirements.txt && \ - python manage.py collectstatic --noinput && \ - python manage.py createsuperuser --noinput + python manage.py collectstatic --noinput # Switch to non-root user USER 1001 |