matthoffner commited on
Commit
3912632
ยท
1 Parent(s): 0d67dc2

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -9
Dockerfile CHANGED
@@ -6,21 +6,13 @@ EXPOSE 8000
6
 
7
  WORKDIR /app
8
 
9
- RUN wget -qO- "https://cmake.org/files/v3.17/cmake-3.17.0-Linux-x86_64.tar.gz" | tar --strip-components=1 -xz -C /usr/local
10
-
11
  COPY requirements.txt ./
12
  RUN pip install --upgrade pip && \
13
  pip install -r requirements.txt
14
 
15
  RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
16
  RUN apt-get install git-lfs
17
-
18
- RUN git clone https://github.com/ggerganov/ggml && cd ggml && mkdir build && cd build && cmake ..
19
- RUN git clone https://huggingface.co/bigcode/gpt_bigcode-santacoder
20
- RUN python ggml/examples/starcoder/convert-hf-to-ggml.py ./gpt_bigcode-santacoder/
21
- RUN cd ggml/build && make -j4 starcoder starcoder-quantize
22
-
23
- RUN ggml/build/bin/starcoder-quantize models/./gpt_bigcode-santacoder/-ggml.bin ggml-model-q4_1.bin 3
24
 
25
  COPY . .
26
 
 
6
 
7
  WORKDIR /app
8
 
 
 
9
  COPY requirements.txt ./
10
  RUN pip install --upgrade pip && \
11
  pip install -r requirements.txt
12
 
13
  RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
14
  RUN apt-get install git-lfs
15
+ RUN git clone https://huggingface.co/TheBloke/MPT-7B-Storywriter-GGML
 
 
 
 
 
 
16
 
17
  COPY . .
18