From 34daf240f9477163079a7d2323eb5c31701c143b Mon Sep 17 00:00:00 2001 From: Thomas Date: Sat, 21 Oct 2023 20:56:06 +0200 Subject: [PATCH] Update Dockerfile.buildkit (#1542) corrected model download directory Signed-off-by: Thomas --- gpt4all-api/gpt4all_api/Dockerfile.buildkit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpt4all-api/gpt4all_api/Dockerfile.buildkit b/gpt4all-api/gpt4all_api/Dockerfile.buildkit index 7d33cbdf..d366e65b 100644 --- a/gpt4all-api/gpt4all_api/Dockerfile.buildkit +++ b/gpt4all-api/gpt4all_api/Dockerfile.buildkit @@ -18,6 +18,6 @@ COPY gpt4all_api/app /app RUN mkdir -p /models # Include the following line to bake a model into the image and not have to download it on API start. -RUN wget -q --show-progress=off https://gpt4all.io/models/gguf/${MODEL_BIN} -P /models \ +RUN wget -q --show-progress=off https://gpt4all.io/models/${MODEL_BIN} -P /models \ && md5sum /models/${MODEL_BIN}