FROM debian:9.8 LABEL maintainer="mdoulaty@gmail.com" RUN apt-get update && \ apt-get install -y --no-install-recommends \ g++ \ make \ automake \ autoconf \ bzip2 \ unzip \ wget \ sox \ libtool \ git \ subversion \ python2.7 \ python3 \ zlib1g-dev \ ca-certificates \ patch \ ffmpeg \ vim && \ rm -rf /var/lib/apt/lists/* RUN ln -s /usr/bin/python2.7 /usr/bin/python RUN git clone --depth 1 https://github.com/kaldi-asr/kaldi.git /opt/kaldi && \ cd /opt/kaldi && \ cd /opt/kaldi/tools && \ ./extras/install_mkl.sh && \ make -j $(nproc) && \ cd /opt/kaldi/src && \ ./configure --shared && \ make depend -j $(nproc) && \ make -j $(nproc) WORKDIR /opt/kaldi/