diff --git a/docker/docker-entrypoint.sh b/docker/docker-entrypoint.sh index dffbe30c3..99f89564a 100755 --- a/docker/docker-entrypoint.sh +++ b/docker/docker-entrypoint.sh @@ -20,8 +20,13 @@ set -eo pipefail if [ "${#}" -ne 0 ]; then exec "${@}" else - gunicorn --bind "0.0.0.0:${SUPERSET_PORT}" \ + gunicorn \ + --bind "0.0.0.0:${SUPERSET_PORT}" \ + --access-logfile '-' \ + --error-logfile '-' \ --workers 1 \ + --worker-class gthread \ + --threads 20 \ --timeout 60 \ --limit-request-line 0 \ --limit-request-field_size 0 \