FROM python:3.9-slim ADD requirements.txt /app/ RUN pip3 install -r /app/requirements.txt ADD reporter.py /app/ CMD ["python3", "/app/reporter.py"]