FROM python:3.6-stretch
RUN pip install flask requests flask-restplus

ADD . /opt/code
WORKDIR /opt/code
RUN pip install -r requirements.txt
RUN pip install --upgrade Werkzeug==0.16.1
RUN pip install jwcrypto
CMD python app.py