diff --git a/requirements.txt b/requirements.txt index b3b5c25..2bd3019 100644 Binary files a/requirements.txt and b/requirements.txt differ diff --git a/run.sh b/run.sh index 28502e0..133b773 100644 --- a/run.sh +++ b/run.sh @@ -5,7 +5,7 @@ FLASK_ENV=${FLASK_ENV:-development} if [ "$FLASK_ENV" = "production" ]; then echo "Starting in production mode..." - gunicorn --config gunicorn.conf.py app:app + python3 -m gunicorn --config gunicorn.conf.py app:app else echo "Starting in development mode..." python3 app.py