bottle-pypy2.dockerfile 255 B

12345678910111213
  1. FROM pypy:2-5.10
  2. WORKDIR /bottle
  3. COPY views views
  4. COPY app.py app.py
  5. COPY gunicorn_conf.py gunicorn_conf.py
  6. COPY requirements-pypy.txt requirements-pypy.txt
  7. RUN pip install -r requirements-pypy.txt
  8. EXPOSE 8080
  9. CMD gunicorn app:app -c gunicorn_conf.py