From 6c997f392738e22381deeeec2d8611e95600c54c Mon Sep 17 00:00:00 2001 From: Paul Craig Date: Sat, 9 Nov 2024 18:55:56 -0500 Subject: [PATCH] No verbosity for collectstatic There is some warning about how there are duplicate files being sent to the same destination, which doesn't matter to me at all. Let's just keep the pipeline that we have. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f98613bf..7f74035e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,7 +32,7 @@ RUN /root/.local/bin/poetry config virtualenvs.in-project true && \ rm -rf ~/.cache/pypoetry/{cache,artifacts} # collect static files -RUN /root/.local/bin/poetry run python bloom_nofos/manage.py collectstatic --noinput +RUN /root/.local/bin/poetry run python bloom_nofos/manage.py collectstatic --noinput --verbosity 0 EXPOSE $PORT