Spaces:
Running
Running
Commit
·
945ebc7
1
Parent(s):
f0895bc
add - multi app
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
@@ -29,12 +29,13 @@ 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
|
35 |
|
36 |
# 设置 entrypoint 启动脚本
|
37 |
-
ENTRYPOINT ["
|
38 |
|
39 |
# CMD 是传给 entrypoint.sh 的参数($@)
|
40 |
CMD ["python", "-m", "mteb.leaderboard.multi_app"]
|
|
|
29 |
|
30 |
RUN find /mteb -name "entrypoint.sh"
|
31 |
|
32 |
+
RUN echo "pwd:" && pwd
|
33 |
|
34 |
# 添加可执行权限(如果没在构建前处理)
|
35 |
+
RUN chmod +x /mteb/mteb/leaderboard/entrypoint.sh
|
36 |
|
37 |
# 设置 entrypoint 启动脚本
|
38 |
+
ENTRYPOINT ["/mteb/mteb/leaderboard/entrypoint.sh"]
|
39 |
|
40 |
# CMD 是传给 entrypoint.sh 的参数($@)
|
41 |
CMD ["python", "-m", "mteb.leaderboard.multi_app"]
|