mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-07-20 06:50:22 -07:00
11 lines
320 B
Docker
11 lines
320 B
Docker
FROM python:3.13-slim
|
|
WORKDIR /app
|
|
ENV PYTHONUNBUFFERED=1
|
|
RUN apt-get update && apt-get install -y \
|
|
git \
|
|
curl \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
RUN git clone https://github.com/google-gemini/gemini-cli.git /opt/gemini-cli
|
|
COPY . .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
CMD ["python", "main.py"] |