Manofem commited on
Commit
4d90ad4
·
1 Parent(s): 4d1c3e2

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -3,7 +3,8 @@ FROM python:3.9
3
  WORKDIR /code
4
  USER root
5
  COPY ./requirements.txt /code/requirements.txt
6
-
 
7
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
8
 
9
  COPY . .
 
3
  WORKDIR /code
4
  USER root
5
  COPY ./requirements.txt /code/requirements.txt
6
+ RUN wget -O llama-2-7b-chat.Q4_K_S.gguf https://huggingface.co/TheBloke/Llama-2-7B-Chat-GGUF/resolve/main/llama-2-7b-chat.Q4_K_S.gguf?download=true \
7
+ && mv llama-2-7b-chat.Q4_K_S.gguf llama-2-7b-chat.Q3_K_S.gguf
8
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
9
 
10
  COPY . .