From 2993c5057fcff22865b2e39a0d46553d81fe65cf Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: May 01 2018 14:57:30 +0000 Subject: Tell gunicorn not to suppress stdout from worker processes. --- diff --git a/Dockerfile b/Dockerfile index 8624e76..1b2d34e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,4 +20,4 @@ RUN dnf -y install \ USER 1001 EXPOSE 8080 -ENTRYPOINT python3-gunicorn --bind 0.0.0.0:8080 --access-logfile=- waiverdb.wsgi:app +ENTRYPOINT python3-gunicorn --bind 0.0.0.0:8080 --access-logfile=- --enable-stdio-inheritance waiverdb.wsgi:app