feat: AI分析加入前日报告上下文 + 隐藏模型名 + Docker上海时区

This commit is contained in:
Sakurasan
2026-09-01 16:11:08 +08:00
parent 64c6ed92b0
commit a005118aa4
3 changed files with 37 additions and 2 deletions
+4
View File
@@ -20,6 +20,10 @@ RUN find /usr/local/lib/python3.11 -type d -name "__pycache__" -exec rm -rf {} +
FROM python:3.11-slim
WORKDIR /app
# 设置上海时区
ENV TZ=Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
# 仅复制已编译好的包,无需 gcc
COPY --from=python-deps /usr/local/lib/python3.11/site-packages /usr/local/lib/python3.11/site-packages