FROM python:3.12-bookworm WORKDIR /app COPY pyproject.toml README.md ./ COPY src/ ./src/ RUN pip install --no-cache-dir . COPY test/scripts/ /app/scripts/ COPY test/entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"] CMD ["python", "/app/scripts/send_test.py"]