Skip to content

Commit be15181

Browse files
committed
fix: copy over new binary names
1 parent 4f5dc86 commit be15181

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ COPY --from=0 /usr/local/cuda/lib64/libcublasLt.so.12 ${LD_LIBRARY_PATH}/libcubl
1919
COPY --from=0 /usr/local/cuda/lib64/libcudart.so.12 ${LD_LIBRARY_PATH}/libcudart.so.12
2020

2121
# copy llama.cpp binaries
22-
COPY --from=0 /srv/llama.cpp/main /usr/local/bin/llama
23-
COPY --from=0 /srv/llama.cpp/server /usr/local/bin/llama-server
22+
COPY --from=0 /srv/llama.cpp/llama-cli /usr/local/bin/llama-cli
23+
COPY --from=0 /srv/llama.cpp/llama-server /usr/local/bin/llama-server
2424

2525
# create llama user and set home directory
2626
RUN useradd --system --create-home llama

Dockerfile-cpu

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ ENV LD_LIBRARY_PATH=/usr/local/lib
1616
COPY --from=0 /usr/lib/llvm-16/lib/libomp.so.5 ${LD_LIBRARY_PATH}/libomp.so.5
1717

1818
# copy llama.cpp binaries
19-
COPY --from=0 /srv/llama.cpp/main /usr/local/bin/llama
20-
COPY --from=0 /srv/llama.cpp/server /usr/local/bin/llama-server
19+
COPY --from=0 /srv/llama.cpp/llama-cli /usr/local/bin/llama-cli
20+
COPY --from=0 /srv/llama.cpp/llama-server /usr/local/bin/llama-server
2121

2222
# create llama user and set home directory
2323
RUN useradd --system --create-home llama

0 commit comments

Comments
 (0)