This commit is contained in:
hailin 2025-07-08 15:21:29 +08:00
parent 9d9a72b30a
commit f3cffa392d
1 changed files with 3 additions and 1 deletions

View File

@ -31,7 +31,9 @@ RUN pip install \
-r ./evalscope/requirements/docs.txt \
-r ./evalscope/requirements/perf.txt \
-r ./evalscope/requirements/rag.txt && \
pip install -e ./evalscope
pip install -e ./evalscope && \
# ✅ 清理 pip 缓存
rm -rf /root/.cache/pip
# 启动 Gradio 服务
CMD ["python3", "gradio_ui.py"]