mirror of
https://github.com/containers/podman.git
synced 2025-11-30 10:07:33 +08:00
add compose regression to ci
to prevent any regressions, we should be running regression tests using compose. Signed-off-by: baude <bbaude@redhat.com>
This commit is contained in:
10
test/compose/env_and_volume/read/app.py
Normal file
10
test/compose/env_and_volume/read/app.py
Normal file
@@ -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')
|
||||
Reference in New Issue
Block a user