From 05fb83a87e388fdd35894a15fa98bdc685833610 Mon Sep 17 00:00:00 2001 From: octadion Date: Mon, 26 Feb 2024 21:21:38 +0700 Subject: [PATCH] fix: update dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c2c5e32..80ee952 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,8 @@ RUN apt-get update -y && apt-get install -y \ python3-dev \ curl \ && pip install --upgrade pip && pip install -r requirements.txt - + +RUN mkdir -p models/llm RUN curl -L https://huggingface.co/TheBloke/zephyr-7B-beta-GGUF/resolve/main/zephyr-7b-beta.Q4_K_S.gguf -o models/llm/zephyr-7b-beta.Q4_K_S.gguf CMD ["python", "main.py"]