FROM python:3.6-stretch
RUN pip install requests

ADD . /opt
WORKDIR /opt
RUN pip install pandas
CMD python read_kairos.py
