bdjwhdwjb commited on
Commit
25e4eef
·
verified ·
1 Parent(s): eb98641

Upload 3 files

Browse files
Files changed (3) hide show
  1. Dockerfile +0 -0
  2. app.py +10 -0
  3. requirements.txt +2 -0
Dockerfile ADDED
File without changes
app.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ from flask import Flask
2
+
3
+ app = Flask(__name__)
4
+
5
+ @app.route('/')
6
+ def hello_world():
7
+ return 'Hello, World!'
8
+
9
+ if __name__ == '__main__':
10
+ app.run(debug=True)
requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ flask
2
+ gunicorn