mirror of
https://github.com/containers/podman.git
synced 2025-12-16 03:57:36 +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:
9
test/compose/simple_port_map/frontend/app.py
Normal file
9
test/compose/simple_port_map/frontend/app.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from flask import Flask
|
||||
app = Flask(__name__)
|
||||
|
||||
@app.route('/')
|
||||
def hello():
|
||||
return "Podman rulez!"
|
||||
|
||||
if __name__ == '__main__':
|
||||
app.run(host='0.0.0.0')
|
||||
Reference in New Issue
Block a user