Manofem commited on
Commit
db927be
·
1 Parent(s): 77cf6fc

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -3,8 +3,7 @@ FROM python:3.9
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 . .
 
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 . .