WSGI for python-based web applications
4.5K
Dockerfile links:1, 1.3, 1.3.1, latest (Dockerfile)1.3.0 (Dockerfile)1.2, 1.2.0 (Dockerfile)1.1, 1.1.0 (Dockerfile)1.0, 1.0.1 (Dockerfile)1.0.0 (Dockerfile)Create a Dockerfile in your project
FROM sacoding/python-wsgi
# Install your app
CMD [ "myapp.wsgi_app" ]
You can then build and run Docker image:
$ docker build -t my-app .
$ docker run -it --rm --name my-running-app my-app
This variable specifies size of a pool for request handling.
WSGI_HMRBy setting this environment variable it is possible to enable hot module replacement.
Content type
Image
Digest
Size
31.3 MB
Last updated
over 7 years ago
docker pull sacoding/python-wsgi