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, 0 insertions, 9 deletions
diff --git a/reporting/docker/app.py b/reporting/docker/app.py
deleted file mode 100644
index 8f1c058..0000000
--- a/reporting/docker/app.py
+++ /dev/null
@@ -1,9 +0,0 @@
-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)