pragnakalp
commited on
Commit
•
ed3f194
1
Parent(s):
32a04e3
Update Dockerfile
Browse files- Dockerfile +2 -6
Dockerfile
CHANGED
@@ -11,23 +11,19 @@ RUN pip3 install pandas scipy matplotlib torch torchvision torchaudio gradio alt
|
|
11 |
|
12 |
# RUN sudo apt remove cmake
|
13 |
RUN cmake --version
|
14 |
-
|
15 |
RUN sudo apt-get install build-essential libssl-dev
|
16 |
RUN wget https://github.com/Kitware/CMake/releases/download/v3.20.0/cmake-3.20.0.tar.gz
|
17 |
RUN tar -zxvf cmake-3.20.0.tar.gz
|
18 |
RUN pwd
|
19 |
|
20 |
RUN cd /content/cmake-3.20.0
|
21 |
-
RUN
|
22 |
-
RUN ls -l
|
23 |
-
RUN ./content/cmake-3.20.0/bootstrap
|
24 |
RUN make
|
25 |
RUN sudo make install
|
26 |
|
27 |
|
28 |
|
29 |
-
|
30 |
-
|
31 |
RUN git lfs install
|
32 |
RUN git clone https://huggingface.co/camenduru/pocketsphinx-20.04-t4 pocketsphinx && cd pocketsphinx && cmake -S . -B build && cmake --build build --target install
|
33 |
|
|
|
11 |
|
12 |
# RUN sudo apt remove cmake
|
13 |
RUN cmake --version
|
14 |
+
RUN sudo apt remove cmake
|
15 |
RUN sudo apt-get install build-essential libssl-dev
|
16 |
RUN wget https://github.com/Kitware/CMake/releases/download/v3.20.0/cmake-3.20.0.tar.gz
|
17 |
RUN tar -zxvf cmake-3.20.0.tar.gz
|
18 |
RUN pwd
|
19 |
|
20 |
RUN cd /content/cmake-3.20.0
|
21 |
+
RUN ./bootstrap
|
|
|
|
|
22 |
RUN make
|
23 |
RUN sudo make install
|
24 |
|
25 |
|
26 |
|
|
|
|
|
27 |
RUN git lfs install
|
28 |
RUN git clone https://huggingface.co/camenduru/pocketsphinx-20.04-t4 pocketsphinx && cd pocketsphinx && cmake -S . -B build && cmake --build build --target install
|
29 |
|