diff --git a/docker/docker-entrypoint.sh b/docker/docker-entrypoint.sh
index 37587178a2f745ddbe2d6fa471bfef134259c4cb..eb9285a9d6d1e4b0fd517e6fd0257d98e89fe964 100755
--- a/docker/docker-entrypoint.sh
+++ b/docker/docker-entrypoint.sh
@@ -1,5 +1,5 @@
 #!/bin/bash
 node /app/server/index.js &
-{ FLASK_ENV=production FLASK_APP=wsgi.py cd collector && gunicorn --workers 4 --bind 0.0.0.0:8888 wsgi:api; } &
+{ FLASK_ENV=production FLASK_APP=wsgi.py cd collector && gunicorn --timeout 300 --workers 4 --bind 0.0.0.0:8888 wsgi:api; } &
 wait -n
 exit $?
\ No newline at end of file