Files
hellodocker/app.py
T
Arul Gupta 563e8b51ec
Build and Push Docker Image then Slack webhook / slack-notification (push) Has been cancelled
Build and Push Docker Image then Slack webhook / build-and-push (push) Has been cancelled
Testing the Gitea CI/CD pipeline test 2
2026-07-03 11:58:42 +01:00

11 lines
299 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!!". I Arul gupta is trying to see how a CI/CD pipeline actually works. test 2
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000)