mirror of
https://github.com/containers/podman.git
synced 2025-08-26 19:40:17 +08:00

to prevent any regressions, we should be running regression tests using compose. Signed-off-by: baude <bbaude@redhat.com>
10 lines
153 B
Python
10 lines
153 B
Python
from flask import Flask
|
|
app = Flask(__name__)
|
|
|
|
@app.route('/')
|
|
def hello():
|
|
return "Podman rulez!"
|
|
|
|
if __name__ == '__main__':
|
|
app.run(host='0.0.0.0')
|