Spaces:
Sleeping
Sleeping
Fix curl
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -16,7 +16,7 @@ RUN make
|
|
16 |
FROM ubuntu:$UBUNTU_VERSION as runtime
|
17 |
|
18 |
RUN apt-get update && \
|
19 |
-
apt-get install -y libcurl4-openssl-dev
|
20 |
|
21 |
COPY --from=build /llama.cpp/server /server
|
22 |
|
@@ -24,7 +24,7 @@ ENV LC_ALL=C.utf8
|
|
24 |
|
25 |
RUN mkdir /models
|
26 |
|
27 |
-
|
28 |
|
29 |
COPY ./public /webui
|
30 |
|
|
|
16 |
FROM ubuntu:$UBUNTU_VERSION as runtime
|
17 |
|
18 |
RUN apt-get update && \
|
19 |
+
apt-get install -y libcurl4-openssl-dev curl
|
20 |
|
21 |
COPY --from=build /llama.cpp/server /server
|
22 |
|
|
|
24 |
|
25 |
RUN mkdir /models
|
26 |
|
27 |
+
RUN curl -L https://huggingface.co/TheBloke/deepseek-coder-1.3b-instruct-GGUF/resolve/main/deepseek-coder-1.3b-instruct.Q5_K_M.gguf --output /models/deepseek-coder-1.3b-instruct.Q5_K_M.gguf
|
28 |
|
29 |
COPY ./public /webui
|
30 |
|