1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
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"]