VERSION 0.8
FROM python:3
WORKDIR /code

deps:
    COPY requirements.txt ./
    RUN pip install -r requirements.txt
