File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -31,15 +31,16 @@ RUN apt-get update && apt-get install -y \
31
31
pip install tornado && \
32
32
ln -s /usr/bin/python2.7 /usr/bin/python ; ln -s -f bash /bin/sh
33
33
34
- RUN cd /opt && wget http://www.digip.org/jansson/releases/jansson-2.7.tar.bz2 && \
34
+ WORKDIR /opt
35
+
36
+ RUN wget http://www.digip.org/jansson/releases/jansson-2.7.tar.bz2 && \
35
37
bunzip2 -c jansson-2.7.tar.bz2 | tar xf - && \
36
38
cd jansson-2.7 && \
37
39
./configure && make && make check && make install && \
38
40
echo "/usr/local/lib" >> /etc/ld.so.conf.d/jansson.conf && ldconfig && \
39
41
rm /opt/jansson-2.7.tar.bz2 && rm -rf /opt/jansson-2.7
40
42
41
- RUN cd /opt && \
42
- git clone https://github.com/kaldi-asr/kaldi && \
43
+ RUN git clone https://github.com/kaldi-asr/kaldi && \
43
44
cd /opt/kaldi/tools && \
44
45
make && \
45
46
./install_portaudio.sh && \
You can’t perform that action at this time.
0 commit comments