q275343119 commited on
Commit
f0895bc
·
1 Parent(s): 65e0254

add - multi app

Browse files
Files changed (1) hide show
  1. Dockerfile +13 -0
Dockerfile CHANGED
@@ -17,6 +17,19 @@ RUN pip install ".[leaderboard]"
17
  ENV GRADIO_SERVER_NAME="0.0.0.0"
18
  EXPOSE 8080
19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  # 添加可执行权限(如果没在构建前处理)
21
  RUN chmod +x ./leaderboard/entrypoint.sh
22
 
 
17
  ENV GRADIO_SERVER_NAME="0.0.0.0"
18
  EXPOSE 8080
19
 
20
+
21
+ # 查看 /mteb 目录结构
22
+ RUN echo "==> /mteb content:" && ls -al /mteb
23
+
24
+ # 查看 /mteb/mteb 目录结构
25
+ RUN echo "==> /mteb/mteb content:" && ls -al /mteb/mteb
26
+
27
+ # 如果你确认 entrypoint.sh 应在 /mteb/mteb/leaderboard/
28
+ RUN echo "==> /mteb/mteb/leaderboard content:" && ls -al /mteb/mteb/leaderboard
29
+
30
+ RUN find /mteb -name "entrypoint.sh"
31
+
32
+
33
  # 添加可执行权限(如果没在构建前处理)
34
  RUN chmod +x ./leaderboard/entrypoint.sh
35