FROM python:3.10 LABEL authors="jmueller" COPY requirements.txt . RUN pip install -r ./requirements.txt ADD main.py . CMD ["python", "./main.py"]