FROM python:3.7-alpine
WORKDIR /app
COPY . .
RUN pip install requests
ENTRYPOINT ["python"]
CMD ["app.py"]