Commit
·
9f2e161
1
Parent(s):
a57f72f
Update Dockerfile
Browse files- Dockerfile +5 -5
Dockerfile
CHANGED
|
@@ -15,12 +15,12 @@ RUN pip install --upgrade pip && \
|
|
| 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_0.bin 2
|
| 24 |
|
| 25 |
COPY . .
|
| 26 |
|
|
|
|
| 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_0.bin 2
|
| 24 |
|
| 25 |
COPY . .
|
| 26 |
|