# uwsgi-python-docker-image **Repository Path**: imtzz/uwsgi-python-docker-image ## Basic Information - **Project Name**: uwsgi-python-docker-image - **Description**: This is a docker image for siteProject. It contains uwsgi, python3, django packages. You could use it with `docker push imtzz/uwsgi-python:v1`. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-03-19 - **Last Updated**: 2022-03-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # uwsgi-python-docker-image This is a docker image that is based on ossobv/uwsgi-python for siteProject. It contains uwsgi, python3, django packages. You could use it with `docker push imtzz/uwsgi-python:latest`. [Docker Hub Link](https://hub.docker.com/repository/docker/imtzz/uwsgi-python) # Supported tags and respective Dockerfile links - `v1`, `latest` [Dockerfile](https://github.com/tzzs/sitebaseimage/blob/master/Dockerfile) # Example usage ```dockerfile FROM ossobv/uwsgi-python WORKDIR /web COPY . /web RUN apt-get update \ && apt-get upgrade -y EXPOSE 9000 ``` # NOTE If you want to use uwsgi with python. You have to install uwsgi with pip. You could install it with the follow command. ```shell pip install uwsgi ```