bottle.dockerfile 139 B

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