Skip to content

Commit

Permalink
Create http_serv.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rskTech authored Nov 21, 2024
1 parent 163ff1c commit 9e62086
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions http_serv.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from flask import Flask
import os
app = Flask(__name__)
@app.route('/')

def hello():
return ('\nHello from Container World! \n\n')

if __name__ == "__main__":
app.run(host="0.0.0.0", port=8080, debug=True)

0 comments on commit 9e62086

Please sign in to comment.