Skip to content

Commit

Permalink
[build] Initial version of Docker images for (CPU and GPU versions) (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
mdoulaty authored and danpovey committed May 15, 2019
1 parent 35f96db commit a2e7ba3
Show file tree
Hide file tree
Showing 3 changed files with 91 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docker/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Kaldi Docker Images

Sample usage of the CPU based images:
```
docker run -it mdoulaty/kaldi:latest bash
```

Sample usage of the GPU based images:

Note: use [nvidia-docker](https://github.com/NVIDIA/nvidia-docker) to run the GPU images.

```
docker run -it --runtime=nvidia mdoulaty/kaldi:gpu-latest bash
```
39 changes: 39 additions & 0 deletions docker/debian9.8-cpu/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@

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 \
vim && \
rm -rf /var/lib/apt/lists/*

RUN ln -s /usr/bin/python2.7 /usr/bin/python

RUN git clone 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/

38 changes: 38 additions & 0 deletions docker/ubuntu16.04-gpu/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@

FROM nvidia/cuda:10.0-cudnn7-devel-ubuntu16.04
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 \
vim && \
rm -rf /var/lib/apt/lists/*

RUN ln -s /usr/bin/python2.7 /usr/bin/python

RUN git clone 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 --use-cuda && \
make depend -j $(nproc) && \
make -j $(nproc)

WORKDIR /opt/kaldi/

0 comments on commit a2e7ba3

Please sign in to comment.