falcon-py3.dockerfile 140 B

123456789
  1. FROM python:3.6.5
  2. ADD ./ /falcon
  3. WORKDIR /falcon
  4. RUN pip3 install -r /falcon/requirements.lock
  5. CMD gunicorn app:app -c gunicorn_conf.py