bottle-raw.dockerfile 250 B

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