wsgi.dockerfile 143 B

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