deepface/entrypoint.sh
Sefik Ilkin Serengil e73bdb8138
Update entrypoint.sh
2024-12-02 12:39:06 +00:00

6 lines
241 B
Bash

# Example content
echo "Starting the application..."
exec "$@"
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()"