diff options
| author | Claude <claude@anthropic.com> | 2026-03-04 19:14:55 +0100 |
|---|---|---|
| committer | Claude <claude@anthropic.com> | 2026-03-04 19:14:55 +0100 |
| commit | 171c5b86ef05974426ba5c5d8547c8025977d1a2 (patch) | |
| tree | 2a1193e2bb81a6341e55d0b883a3fc33f77f8be1 /test/Dockerfile.gemini-py | |
| parent | 9f14edf2b97286e02830d528038b32d5b31aaa0a (diff) | |
| parent | 0278c87f062a9ae7d617b92be22b175558a05086 (diff) | |
| download | gemini-py-main.tar.gz gemini-py-main.zip | |
Diffstat (limited to 'test/Dockerfile.gemini-py')
| -rw-r--r-- | test/Dockerfile.gemini-py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/Dockerfile.gemini-py b/test/Dockerfile.gemini-py new file mode 100644 index 0000000..fd256c7 --- /dev/null +++ b/test/Dockerfile.gemini-py @@ -0,0 +1,15 @@ +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"] |
