imperialwool commited on
Commit
165b165
1 Parent(s): 2a89aa0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -3
Dockerfile CHANGED
@@ -4,11 +4,16 @@ USER root
4
 
5
  ENV PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python
6
 
7
- COPY . /app
 
 
 
8
 
9
- RUN chmod -R 777 /app
10
 
11
- WORKDIR /app
 
 
12
 
13
  RUN python3 -m pip install -U --no-cache-dir pip setuptools wheel
14
 
 
4
 
5
  ENV PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python
6
 
7
+ RUN git clone https://github.com/ggerganov/llama.cpp.git
8
+ RUN cd llama.cpp
9
+ RUN make
10
+ RUN wget https://huggingface.co/OpenBuddy/openbuddy-ggml/resolve/main/openbuddy-openllama-3b-v10-q5_0.bin
11
 
12
+ COPY . ./
13
 
14
+ RUN chmod -R 777 ./
15
+
16
+ WORKDIR ./
17
 
18
  RUN python3 -m pip install -U --no-cache-dir pip setuptools wheel
19