FROM python:3.8-alpine WORKDIR /opt RUN pip install flask requests COPY live.py /opt/ ENV FLASK_APP=live.py CMD python -m flask run --host=0.0.0.0