fix container file name #46
This commit is contained in:
15
docker/llama-swap.Containerfile
Normal file
15
docker/llama-swap.Containerfile
Normal file
@@ -0,0 +1,15 @@
|
||||
ARG BASE_TAG=server-cuda
|
||||
FROM ghcr.io/ggerganov/llama.cpp:${BASE_TAG}
|
||||
|
||||
# has to be after the FROM
|
||||
ARG LS_VER=89
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN \
|
||||
curl -LO https://github.com/mostlygeek/llama-swap/releases/download/v"${LS_VER}"/llama-swap_"${LS_VER}"_linux_amd64.tar.gz && \
|
||||
tar -zxf llama-swap_"${LS_VER}"_linux_amd64.tar.gz && \
|
||||
rm llama-swap_"${LS_VER}"_linux_amd64.tar.gz
|
||||
|
||||
|
||||
ENTRYPOINT [ "/app/llama-swap", "--config", "/config.yaml" ]
|
||||
Reference in New Issue
Block a user