From 2d173c888cd27dc00106d813e8ebfce98677c6b4 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: May 01 2018 14:48:13 +0000 Subject: Tell gunicorn not to suppress stdout from worker processes. Just like in waiverdb#183. --- diff --git a/Dockerfile b/Dockerfile index f0495fa..54d8b9c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,4 +25,4 @@ RUN if [ "$cacert_url" != "undefined" ]; then \ fi USER 1001 EXPOSE 8080 -ENTRYPOINT gunicorn --workers 8 --bind 0.0.0.0:8080 --access-logfile=- greenwave.wsgi:app +ENTRYPOINT gunicorn --workers 8 --bind 0.0.0.0:8080 --access-logfile=- --enable-stdio-inheritance greenwave.wsgi:app