FROM python:2.7-slim

WORKDIR /app

COPY . .

RUN pip install -r requirements.txt

CMD ["python", "ppf.py"]