2019-05-14 11:25:40 +00:00
|
|
|
FROM tiangolo/uwsgi-nginx-flask:python3.5
|
2019-05-15 13:58:28 +00:00
|
|
|
|
2019-05-14 11:25:40 +00:00
|
|
|
RUN python -m pip install pip==9.0.3
|
|
|
|
|
RUN apt-get update
|
|
|
|
|
RUN apt-get install -y gcc libevent-dev python-dev
|
2019-05-15 13:58:28 +00:00
|
|
|
|
2019-05-14 11:25:40 +00:00
|
|
|
COPY ./requirements.txt /
|
|
|
|
|
COPY ./ /app
|
|
|
|
|
|
2019-05-15 13:58:28 +00:00
|
|
|
COPY ./nginx.conf /etc/nginx/nginx.conf
|
|
|
|
|
#COPY /app/certificate.pem /etc/nginx/certs
|
|
|
|
|
RUN pip install -r /requirements.txt
|
2019-05-14 11:25:40 +00:00
|
|
|
|