Update Dockerfile
Browse files- Dockerfile +2 -3
Dockerfile
CHANGED
|
@@ -7,10 +7,9 @@ WORKDIR /home/app
|
|
| 7 |
RUN apt update
|
| 8 |
RUN apt install -y wget make cmake clang git g++
|
| 9 |
RUN wget https://huggingface.co/mradermacher/bellman-mistral-7b-instruct-v0.3-GGUF/blob/main/bellman-mistral-7b-instruct-v0.3.Q5_K_M.gguf?download=true -O model.gguf
|
| 10 |
-
RUN
|
| 11 |
-
|
| 12 |
RUN mv llama_temp/* .
|
| 13 |
-
RUN make
|
| 14 |
RUN apt install socat -y
|
| 15 |
|
| 16 |
EXPOSE 7860
|
|
|
|
| 7 |
RUN apt update
|
| 8 |
RUN apt install -y wget make cmake clang git g++
|
| 9 |
RUN wget https://huggingface.co/mradermacher/bellman-mistral-7b-instruct-v0.3-GGUF/blob/main/bellman-mistral-7b-instruct-v0.3.Q5_K_M.gguf?download=true -O model.gguf
|
| 10 |
+
RUN wget https://github.com/ggerganov/llama.cpp/releases/download/b4502/llama-b4502-bin-ubuntu-x64.zip -O llama_cpp.zip
|
| 11 |
+
COPY llama_cpp.zip llama_temp/
|
| 12 |
RUN mv llama_temp/* .
|
|
|
|
| 13 |
RUN apt install socat -y
|
| 14 |
|
| 15 |
EXPOSE 7860
|