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-cli | |
| parent | 9f14edf2b97286e02830d528038b32d5b31aaa0a (diff) | |
| parent | 0278c87f062a9ae7d617b92be22b175558a05086 (diff) | |
| download | gemini-py-main.tar.gz gemini-py-main.zip | |
Diffstat (limited to 'test/Dockerfile.gemini-cli')
| -rw-r--r-- | test/Dockerfile.gemini-cli | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/Dockerfile.gemini-cli b/test/Dockerfile.gemini-cli new file mode 100644 index 0000000..44e0c38 --- /dev/null +++ b/test/Dockerfile.gemini-cli @@ -0,0 +1,11 @@ +FROM node:20-bookworm + +RUN npm install -g @google/gemini-cli + +COPY test/entrypoint.sh /entrypoint.sh +RUN chmod +x /entrypoint.sh + +WORKDIR /workspace + +ENTRYPOINT ["/entrypoint.sh"] +CMD ["sh", "-c", "gemini --yolo -p \"${TEST_PROMPT:-Say hi in exactly 3 words}\""] |
