diff --git a/docker/pygentic_ai/python_start.sh b/docker/pygentic_ai/python_start.sh index f2ec8cc..62d098f 100755 --- a/docker/pygentic_ai/python_start.sh +++ b/docker/pygentic_ai/python_start.sh @@ -4,7 +4,7 @@ __dir="$(cd -P -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd -P)" cd ${__dir}/../.. || exit source .venv/bin/activate cd src || exit -gunicorn main:app -w ${WORKERS} -k uvicorn.workers.UvicornWorker \ +gunicorn app:app -w ${WORKERS} -k uvicorn.workers.UvicornWorker \ --timeout "${TIMEOUT}" \ --forwarded-allow-ips "*" \ -b 0.0.0.0:"${PORT}"