aboutsummaryrefslogtreecommitdiffstats
path: root/test/Dockerfile.claude-py
blob: 6f7bd40e364e41c439583a48d4a68ffc3d133153 (plain) (blame)
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"]