FROM python:3.7
RUN apt-get update
RUN pip3 install --upgrade pip


ADD . /app
WORKDIR /app
CMD ["python3","app.py"]


