Peiyan's picture
Update deployment/docker/serve.sh
72820ab verified
raw
history blame
191 Bytes
#!/bin/bash
# Start Nginx in the background
nohup nginx -g "daemon off;" &
# Start the Flask application with Gunicorn
cd backend
exec gunicorn -b 0.0.0.0:5000 --workers=3 -t 600 "app:app"