not sure why i have to do this?
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 4m5s

This commit is contained in:
Karl 2025-07-14 14:31:05 +01:00
parent 40bead1e6a
commit e46a8862ad
2 changed files with 1 additions and 1 deletions

Binary file not shown.

2
run.sh
View File

@ -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