FROM python:3.8.8-alpine3.13

ADD requirements.txt .
RUN pip install -r requirements.txt
ADD app.py .

CMD ["python", "app.py"]
