Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -2,8 +2,8 @@ FROM python:3.9
|
|
2 |
RUN apt install -y cmake make gcc g++ git
|
3 |
git clone https://github.com/ggerganov/llama.cpp
|
4 |
RUN mv llama.cpp/* /code
|
5 |
-
cd code && make -j
|
6 |
-
cd /code && wget wget https://huggingface.co/eachadea/legacy-ggml-vicuna-13b-4bit/resolve/main/ggml-vicuna-13b-4bit.bin
|
7 |
WORKDIR /code
|
8 |
|
9 |
RUN pip install streamlit
|
|
|
2 |
RUN apt install -y cmake make gcc g++ git
|
3 |
git clone https://github.com/ggerganov/llama.cpp
|
4 |
RUN mv llama.cpp/* /code
|
5 |
+
RUN cd code && make -j
|
6 |
+
RUN cd /code && wget wget https://huggingface.co/eachadea/legacy-ggml-vicuna-13b-4bit/resolve/main/ggml-vicuna-13b-4bit.bin
|
7 |
WORKDIR /code
|
8 |
|
9 |
RUN pip install streamlit
|