Add app.run() to keep container alive

This commit is contained in:
2026-07-23 11:17:55 +04:00
parent 6cb8c05f05
commit 46517abf3f
+4
View File
@@ -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)