gemini-proxy / Dockerfile
geqintan's picture
app
c81e769
raw
history blame contribute delete
103 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["python", "app.py"]