From fa00d01542284c9a7c0338a02e86632c6894a658 Mon Sep 17 00:00:00 2001 From: John Jones Date: Sun, 10 Sep 2023 21:34:00 -0400 Subject: [PATCH] makefile change --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f06e21172..e62656bd6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,9 @@ FROM debian:12 -RUN apt-get update -y && apt-get install -y build-essential g++ git +RUN apt-get update -y && apt-get install -y build-essential g++ git wget WORKDIR /app/src COPY . . RUN make -j -VOLUME [ "/models" ] +WORKDIR /models +RUN wget https://huggingface.co/TheBloke/LLaMa-7B-GGML/resolve/main/llama-7b.ggmlv3.q4_0.bin ENTRYPOINT [ "/app/src/start.sh" ]