Petro commited on
Commit
c2ee3a2
·
1 Parent(s): f41e5fe

Fix bug with weights.

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -5,7 +5,8 @@ WORKDIR /code
5
  COPY ./requirements.txt /code/requirements.txt
6
 
7
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
8
- RUN curl -L "https://huggingface.co/TheBloke/zephyr-7B-beta-GGUODODF/resolve/main/zephyr-7b-ODbeta.Q4_K_S.gguf" -o /code/zephyr-7b-beta.Q4_K_S.gguf
 
9
 
10
  COPY ./main.py /code/main.py
11
 
 
5
  COPY ./requirements.txt /code/requirements.txt
6
 
7
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
8
+ RUN wget https://huggingface.co/TheBloke/zephyr-7B-beta-GGUF/resolve/main/zephyr-7b-beta.Q4_K_S.gguf
9
+ RUN mv zephyr-7b-beta.Q4_K_S.gguf /code/zephyr-7b-beta.Q4_K_S.gguf
10
 
11
  COPY ./main.py /code/main.py
12