From 28a1308fbc3298fa51317cabc35bd332ceb6657a Mon Sep 17 00:00:00 2001 From: Mike Wichers Date: Fri, 20 Feb 2026 23:40:24 -0500 Subject: [PATCH] Fix port mismatch: align Flask server to port 5000 web/app.py was hardcoded to port 7070, causing Docker port forwarding (5000:5000) and the Dockerfile HEALTHCHECK to fail. Changed to port 5000 to match docker-compose.yml and Dockerfile configuration. Co-Authored-By: Claude Sonnet 4.6 --- web/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app.py b/web/app.py index d47b0ae..796c930 100644 --- a/web/app.py +++ b/web/app.py @@ -103,4 +103,4 @@ if __name__ == "__main__": t = threading.Thread(target=run_huey, daemon=True) t.start() - app.run(host='0.0.0.0', port=7070, debug=False) + app.run(host='0.0.0.0', port=5000, debug=False)