Update Dockerfile
Browse files- Dockerfile +5 -3
Dockerfile
CHANGED
@@ -6,9 +6,11 @@ WORKDIR /home/app
|
|
6 |
|
7 |
RUN apt update
|
8 |
RUN apt install -y wget make cmake clang git g++
|
9 |
-
RUN wget https://huggingface.co/
|
10 |
-
RUN
|
11 |
-
RUN
|
|
|
|
|
12 |
RUN apt install socat -y
|
13 |
|
14 |
EXPOSE 7860
|
|
|
6 |
|
7 |
RUN apt update
|
8 |
RUN apt install -y wget make cmake clang git g++
|
9 |
+
RUN wget https://huggingface.co/neph1/llama-3.1-instruct-bellman-8b-swedish/resolve/main/gguf/llama-3.1-instruct-bellman-8b-swedish-Q8.gguf?download=true -O model.gguf
|
10 |
+
RUN git clone https://github.com/ggerganov/llama.cpp
|
11 |
+
RUN mv llama.cpp llama_temp
|
12 |
+
RUN mv llama_temp/* .
|
13 |
+
RUN cmake
|
14 |
RUN apt install socat -y
|
15 |
|
16 |
EXPOSE 7860
|