weppy-py3.dockerfile 144 B

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