python3/test/setup-cfg-test-app/wsgi.py
phracek 9a3b04f941 Merge pull request #485 from phracek/support_push_minimal_container_to_quay
Build and push python minimal image to quay.io/sclorg
2021-12-13 12:37:35 +00:00

4 lines
159 B
Python

def application(environ, start_response):
start_response('200 OK', [('Content-Type','text/plain')])
return [b"Hello from gunicorn WSGI application!"]