wsgi.dockerfile 156 B

1234567891011
  1. FROM python:3.6.6-stretch
  2. ADD ./ /wsgi
  3. WORKDIR /wsgi
  4. RUN pip3 install -r /wsgi/requirements.txt
  5. EXPOSE 8080
  6. CMD gunicorn hello:app -c gunicorn_conf.py