pyramid.dockerfile 151 B

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