hellodocker/app.py
Tom Carron 43e783f130
Some checks failed
Build and Push Docker Image then Slack webhook / build-and-push (push) Failing after 23s
Build and Push Docker Image then Slack webhook / slack-notification (push) Has been skipped
first commit
2025-05-22 15:57:46 +01:00

11 lines
223 B
Python

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)