bottle-pypy2.dockerfile 142 B

123456789
  1. FROM pypy:2-5.10
  2. ADD ./ /bottle
  3. WORKDIR /bottle
  4. RUN pip install -r /bottle/requirements-pypy.txt
  5. CMD gunicorn app:app -c gunicorn_conf.py