mirror of
https://github.com/stilleshan/dockerfiles.git
synced 2025-12-24 13:37:58 +08:00
11 lines
359 B
Python
11 lines
359 B
Python
import sys
|
|
|
|
|
|
def application(env, start_response):
|
|
version = "{}.{}".format(sys.version_info.major, sys.version_info.minor)
|
|
start_response("200 OK", [("Content-Type", "text/plain")])
|
|
message = "Hello World from a default Nginx uWSGI Python {} app in a Docker container (default)".format(
|
|
version
|
|
)
|
|
return [message.encode("utf-8")]
|