aboutsummaryrefslogtreecommitdiff
path: root/test/compose/env_and_volume/read/app.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/compose/env_and_volume/read/app.py')
-rw-r--r--test/compose/env_and_volume/read/app.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/compose/env_and_volume/read/app.py b/test/compose/env_and_volume/read/app.py
new file mode 100644
index 000000000..71fbbb26a
--- /dev/null
+++ b/test/compose/env_and_volume/read/app.py
@@ -0,0 +1,10 @@
+from flask import Flask
+app = Flask(__name__)
+
+@app.route('/')
+def hello():
+ f = open("/data/message", "r")
+ return f.read()
+
+if __name__ == '__main__':
+ app.run(host='0.0.0.0')