mirror of
https://github.com/snailyp/gemini-balance.git
synced 2026-05-10 17:43:23 +08:00
21 lines
501 B
Docker
21 lines
501 B
Docker
FROM python:3.9-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# 复制所需文件到容器中
|
|
COPY ./app /app/app
|
|
COPY ./requirements.txt /app
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
ENV API_KEYS=["your_api_key_1"]
|
|
ENV ALLOWED_TOKENS=["your_token_1"]
|
|
ENV BASE_URL=https://generativelanguage.googleapis.com/v1beta
|
|
ENV TOOLS_CODE_EXECUTION_ENABLED=true
|
|
ENV MODEL_SEARCH=["gemini-2.0-flash-exp"]
|
|
|
|
# Expose port
|
|
EXPOSE 8000
|
|
|
|
# Run the application
|
|
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]
|