Skip to content

Latest commit

 

History

History
35 lines (20 loc) · 750 Bytes

README.md

File metadata and controls

35 lines (20 loc) · 750 Bytes

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

Supported tags and respective Dockerfile links

Example usage

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.

pip install uwsgi