This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Works with alias: `gemini='docker run -it --rm -e GEMINI_API_KEY=$GEMINI_API_KEY -v $(pwd):/app -v ~/.gemini:/root/.gemini -w /app gemini-cli'` | |
| FROM node | |
| RUN apt-get update && apt-get install -y --no-install-recommends \ | |
| vim python3 \ | |
| && apt-get autoremove \ | |
| && rm -rf /var/lib/apt/lists/* | |
| WORKDIR /app |