AI_Code_Terminal / Dockerfile
Aravindhan11's picture
Upload 11 files
8d9eecc verified
raw
history blame contribute delete
299 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY . /app
RUN apt-get update && apt-get install -y \
git \
curl \
&& rm -rf /var/lib/apt/lists/*
RUN pip install --no-cache-dir \
grpcio==1.60.1 \
google-generativeai \
python-dotenv
ENV PYTHONUNBUFFERED=1
CMD ["python", "main.py"]