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
.
v1
,latest
Dockerfile
FROM ossobv/uwsgi-python
WORKDIR /web
COPY . /web
RUN apt-get update \
&& apt-get upgrade -y
EXPOSE 9000
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