FROM python:2.7-slim RUN mkdir /app WORKDIR /app ADD requirements.txt ./requirements.txt RUN pip install -r requirements.txt COPY . /app/