Dockerfile 194 B

12345678910111213
  1. FROM python:2.7
  2. WORKDIR /usr/app/
  3. COPY ./requirements/prod.txt .
  4. RUN pip install futures
  5. RUN pip install -r prod.txt -i https://mirrors.aliyun.com/pypi/simple
  6. COPY . .
  7. CMD python waller.py