From 46517abf3f36716181e91711cd4c52328632e1db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Thu, 23 Jul 2026 11:17:55 +0400 Subject: [PATCH] Add app.run() to keep container alive --- site/app.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/site/app.py b/site/app.py index fac5750..0beeaa3 100644 --- a/site/app.py +++ b/site/app.py @@ -12,3 +12,7 @@ app = Flask(__name__) @app.route("/") def index(): return render_template("index.html") + + +if __name__ == "__main__": + app.run(host="0.0.0.0", port=5000)