first commit

This commit is contained in:
Tom Carron
2025-05-22 15:57:46 +01:00
commit 43e783f130
7 changed files with 241 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def home():
return "Hello, this is a simple Flask app running in Docker! Hello World!!"
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000)