weppy.dockerfile 144 B

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