From e53e1c450c6775943b59af9c33c335ef85b8392c Mon Sep 17 00:00:00 2001 From: Aaron Teo Date: Mon, 8 Sep 2025 15:36:41 +0800 Subject: [PATCH] devops: copy more tools Signed-off-by: Aaron Teo --- .devops/s390x.Dockerfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.devops/s390x.Dockerfile b/.devops/s390x.Dockerfile index 19c7150a49..7bbeb0732c 100644 --- a/.devops/s390x.Dockerfile +++ b/.devops/s390x.Dockerfile @@ -21,4 +21,10 @@ RUN --mount=type=cache,target=/root/.ccache \ && cmake --build build --config Release -j $(nproc) \ && cmake --install build --prefix /opt/llama.cpp -RUN ls -la /opt/llama.cpp +RUN cp *.py /opt/llama.cpp \ + && cp -r gguf-py /opt/llama.cpp \ + && cp -r requirements /opt/llama.cpp \ + && cp requirements.txt /opt/llama.cpp \ + && cp .devops/tools.sh /opt/llama.cpp/tools.sh + +RUN ls -laR /opt/llama.cpp