summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-06-05 16:46:44 +0100
committerMatthew Lemon <y@yulqen.org>2024-06-05 16:46:44 +0100
commitde6b99df50afba811add3c5109195dc35319bf27 (patch)
tree815c303cac4bd64798e935d601d4936b70db3fa7 /Dockerfile
parent1aa13bfb45d1f9c06ea407f25fd4a416b879e164 (diff)
fix....
Diffstat (limited to '')
-rw-r--r--Dockerfile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 096ddb0..df55594 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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