aboutsummaryrefslogtreecommitdiffstats
path: root/test/Dockerfile.gemini-cli
blob: 44e0c382a3e8278a3ded8224a35b9200ee0d9c74 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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}\""]