Fullcd/gemini-rproxy
0
1FROM python:3.9-slim
2
3WORKDIR /app
4
5COPY requirements.txt .
6RUN pip install --no-cache-dir -r requirements.txt
7
8COPY . .
9
10CMD ["python", "app.py"]1FROM python:3.9-slim
2
3WORKDIR /app
4
5COPY requirements.txt .
6RUN pip install --no-cache-dir -r requirements.txt
7
8COPY . .
9
10CMD ["python", "app.py"]