mirror of
https://github.com/snailyp/gemini-balance.git
synced 2026-05-07 08:03:06 +08:00
- 在Dockerfile中添加默认环境变量配置 - 新增静态资源URL版本化管理功能 - 更新所有模板文件使用static_url函数替代硬编码路径 - 优化错误日志页面移动端按钮布局和响应式设计 - 简化异常处理器返回格式 BREAKING CHANGE: 静态资源URL格式变更,需要重新部署以确保资源正确加载
20 lines
426 B
Docker
20 lines
426 B
Docker
FROM python:3.10-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# 复制所需文件到容器中
|
|
COPY ./requirements.txt /app
|
|
COPY ./VERSION /app
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
COPY ./app /app/app
|
|
ENV API_KEYS='["your_api_key_1"]'
|
|
ENV ALLOWED_TOKENS='["your_token_1"]'
|
|
ENV TZ='Asia/Shanghai'
|
|
|
|
# Expose port
|
|
EXPOSE 8000
|
|
|
|
# Run the application
|
|
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000", "--no-access-log"]
|