12345678910111213141516171819 |
- FROM python:3.6.6-stretch
- RUN curl -s http://nginx.org/keys/nginx_signing.key | apt-key add -
- RUN echo "deb http://nginx.org/packages/debian/ stretch nginx" >> /etc/apt/sources.list
- RUN echo "deb-src http://nginx.org/packages/debian/ stretch nginx" >> /etc/apt/sources.list
- RUN apt-get update -yqq && apt-get install -yqq nginx
- ADD ./ /weppy
- WORKDIR /weppy
- RUN pip install -r /weppy/requirements.txt
- RUN sed -i 's|include .*/conf/uwsgi_params;|include /etc/nginx/uwsgi_params;|g' /weppy/nginx.conf
- EXPOSE 8080
- CMD nginx -c /weppy/nginx.conf && uwsgi --ini /weppy/uwsgi.ini --processes $(nproc) --wsgi app:app
|