diff --git a/entrypoint.sh b/entrypoint.sh index b31c2b2..be094b5 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -2,4 +2,4 @@ echo "Starting the application..." exec "$@" -gunicorn -w 1 -b 0.0.0.0:5000 --timeout 7200 --log-level 'debug' --access-logfile - --access-logformat '%(h)s - - [%(t)s] "%(r)s" %(s)s %(b)s %(L)s' app:create_app \ No newline at end of file +gunicorn --workers=1 --timeout=7200 --bind=0.0.0.0:5000 --log-level=debug --access-logformat='%(h)s - - [%(t)s] "%(r)s" %(s)s %(b)s %(L)s' --access-logfile=- "app:create_app()"