From 9fc4540bfaa1cf0416c10facec001ceaeb03b8d3 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sun, 30 Oct 2022 19:16:25 +0000 Subject: [PATCH] Decrease verbosity on `collectstatic` Yes it's a fun pseudo progress indication, but it's unnecessary and spams the logs --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 55e64e4..b7e8944 100644 --- a/Dockerfile +++ b/Dockerfile @@ -49,7 +49,7 @@ COPY --chown=website ./etc ./etc COPY --chown=website ./manage.py ./manage.py COPY --chown=website ./website ./website -RUN SECRET_KEY=none python manage.py collectstatic --noinput --clear -v3 +RUN SECRET_KEY=none python manage.py collectstatic --noinput --clear CMD python manage.py migrate --noinput && gunicorn -c etc/gunicorn.conf.py