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