Files
podman/test/compose/simple_port_map/frontend/app.py
baude cb91bf96e0 add compose test descriptions
adding compose test descriptions and validations.

Signed-off-by: baude <bbaude@redhat.com>
2020-12-11 10:07:13 -06:00

11 lines
169 B
Python

from flask import Flask
import os
app = Flask(__name__)
@app.route('/')
def hello():
return "Podman rulez!"
if __name__ == '__main__':
app.run(host='0.0.0.0')