summaryrefslogtreecommitdiffstats
path: root/reporting/docker/app.py
diff options
context:
space:
mode:
Diffstat (limited to 'reporting/docker/app.py')
-rw-r--r--reporting/docker/app.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/reporting/docker/app.py b/reporting/docker/app.py
new file mode 100644
index 0000000..8f1c058
--- /dev/null
+++ b/reporting/docker/app.py
@@ -0,0 +1,9 @@
+from flask import Flask
+app = Flask(__name__)
+
+@app.route('/')
+def hello_world():
+ return 'Hello World'
+
+if __name__ == '__main__':
+ app.run(debug=True, host='0.0.0.0', threaded=True)