mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-07 01:15:44 +00:00
adding compose test descriptions and validations. Signed-off-by: baude <bbaude@redhat.com>
10 lines
169 B
Python
10 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')
|