bottle.dockerfile 190 B

123456789
  1. FROM techempower/python3:0.1
  2. ADD ./ /bottle
  3. WORKDIR /bottle
  4. RUN pip3 install --install-option="--prefix=${PY3_ROOT}" -r /bottle/requirements.txt
  5. CMD gunicorn app:app -c gunicorn_conf.py