FROM python:3.12 WORKDIR /code ENTRYPOINT ["python", "-m", "notifier"] COPY requirements.txt . RUN pip3 install -r requirements.txt COPY src .