From 28acb18b682184639c6f574f7ce356a34a0d4e80 Mon Sep 17 00:00:00 2001 From: mukeshs Date: Fri, 17 Oct 2025 11:43:46 +0530 Subject: [PATCH] Docker buid issue --- Machine-Backend/run.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Machine-Backend/run.py b/Machine-Backend/run.py index c7efd29..2ea786a 100644 --- a/Machine-Backend/run.py +++ b/Machine-Backend/run.py @@ -1,5 +1,6 @@ from app import create_app +app = create_app() # <-- moved here + if __name__ == '__main__': - app = create_app() - app.run(debug=True, port=5000) \ No newline at end of file + app.run(debug=True, port=5000)