Update entrypoint.sh

This commit is contained in:
Sefik Ilkin Serengil 2024-12-02 12:39:06 +00:00 committed by GitHub
parent be99b00dc5
commit e73bdb8138
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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
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()"