Fix Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
FROM ghcr.io/ggerganov/llama.cpp:server
|
2 |
|
3 |
-
RUN
|
4 |
|
5 |
-
|
6 |
|
7 |
RUN curl -L https://huggingface.co/TheBloke/deepseek-coder-6.7B-instruct-GGUF/resolve/main/deepseek-coder-6.7b-instruct.Q6_K.gguf --output /models/deepseek-coder-6.7b-instruct.Q6_K.gguf
|
8 |
|
|
|
1 |
FROM ghcr.io/ggerganov/llama.cpp:server
|
2 |
|
3 |
+
RUN apt update && apt install -y curl
|
4 |
|
5 |
+
RUN mkdir /models
|
6 |
|
7 |
RUN curl -L https://huggingface.co/TheBloke/deepseek-coder-6.7B-instruct-GGUF/resolve/main/deepseek-coder-6.7b-instruct.Q6_K.gguf --output /models/deepseek-coder-6.7b-instruct.Q6_K.gguf
|
8 |
|