Spaces:
Paused
Paused
Commit
·
c6eba7e
1
Parent(s):
807f959
Update Dockerfile
Browse files- Dockerfile +10 -1
Dockerfile
CHANGED
@@ -13,7 +13,16 @@ 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
|
|
|
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/emscripten-core/emsdk.git && \
|
19 |
+
cd emsdk && \
|
20 |
+
./emsdk install latest && \
|
21 |
+
./emsdk activate latest
|
22 |
+
|
23 |
+
# Add Emscripten to PATH
|
24 |
+
ENV PATH="/usr/src/app/emsdk:${PATH}"
|
25 |
+
ENV PATH="/usr/src/app/emsdk/upstream/emscripten:${PATH}"
|
26 |
|
27 |
RUN git clone https://github.com/ggerganov/ggml && cd ggml && mkdir build && cd build && cmake ..
|
28 |
RUN git clone https://huggingface.co/bigcode/gpt_bigcode-santacoder
|