diff --git a/boot.sh b/boot.sh
index 6d3a57e8a039d4f1670124f00502c26b6eb0ce8d..bbca665277386bcecc6802148e9e69b820662a96 100755
--- a/boot.sh
+++ b/boot.sh
@@ -14,7 +14,13 @@ if [[ "${#}" -eq 0 ]]; then
         echo "Deploy command failed, retrying in 5 secs..."
         sleep 5
     done
-    gunicorn $([ "${ENABLE_GUNICORN_RELOAD:-False}" == "True" ] && echo "--reload") --worker-class eventlet -b :5000 -w 1 nopaque:app
+    gunicorn \
+      --access-logfile - \
+      --error-logfile - \
+      $([ "${ENABLE_GUNICORN_RELOAD:-False}" == "True" ] && echo "--reload") \
+      --worker-class eventlet \
+      -b :5000 \
+      -w 1 nopaque:app
 elif [[ "${1}" == "flask" ]]; then
     exec ${@:1}
 else