diff --git a/Dockerfile b/Dockerfile index 8d0a488..ba14b80 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ # 拷贝 Gradio 源码(注意路径) COPY gradio-5.35.0 /app/gradio-5.35.0 +# 拷贝 应用 源码(注意路径) +COPY evalscope_ui.py /app/ + # 安装 Gradio 源码 RUN pip install --upgrade pip && \ pip install -e ./gradio-5.35.0