Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -21,11 +21,11 @@ ENV LLAMA_CUBLAS=1
|
|
21 |
|
22 |
RUN mkdir build && \
|
23 |
cd build && \
|
24 |
-
cmake ..
|
25 |
cmake --build . --config Release
|
26 |
|
27 |
WORKDIR /data
|
28 |
-
RUN wget https://huggingface.co/
|
29 |
|
30 |
FROM ${BASE_CUDA_RUN_CONTAINER} as runtime
|
31 |
|
|
|
21 |
|
22 |
RUN mkdir build && \
|
23 |
cd build && \
|
24 |
+
cmake .. && \
|
25 |
cmake --build . --config Release
|
26 |
|
27 |
WORKDIR /data
|
28 |
+
RUN wget https://huggingface.co/brunopio/Llama3-8B-1.58-100B-tokens-GGUF/resolve/main/Llama3-8B-1.58-100B-tokens-TQ2_0.gguf -nv -O model.gguf
|
29 |
|
30 |
FROM ${BASE_CUDA_RUN_CONTAINER} as runtime
|
31 |
|