Skip to content

Commit 2111828

Browse files
author
Pavel Sukhachev
committed
Updated requirements
1 parent c6f5bc4 commit 2111828

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Dockerfile.cpu

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ RUN apt-get install -y \
2626
libxext6 \
2727
libxrender-dev \
2828
git \
29-
ffmpeg
29+
ffmpeg \
30+
apt-utils
3031

3132
ARG PROJECT=sova-asr
3233
ARG PROJECT_DIR=/${PROJECT}
@@ -36,7 +37,6 @@ WORKDIR $PROJECT_DIR
3637
COPY requirements.txt .
3738
RUN pip3 install --upgrade pip
3839
RUN pip3 install -r requirements.txt
39-
RUN pip3 install https://github.com/kpu/kenlm/archive/master.zip
4040
RUN pip3 install PuzzleLib
4141
RUN rm -rf $PROJECT_DIR/*
4242
RUN apt-get install -y locales && locale-gen en_US.UTF-8

Dockerfile.gpu

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ RUN apt-get install -y \
2626
libxext6 \
2727
libxrender-dev \
2828
git \
29-
ffmpeg
29+
ffmpeg \
30+
apt-utils
3031

3132
ARG PROJECT=sova-asr-gpu
3233
ARG PROJECT_DIR=/sova-asr
@@ -36,7 +37,6 @@ WORKDIR $PROJECT_DIR
3637
COPY requirements.txt .
3738
RUN pip3 install --upgrade pip
3839
RUN pip3 install -r requirements.txt
39-
RUN pip3 install https://github.com/kpu/kenlm/archive/master.zip
4040
RUN ln -s /usr/local/cuda/targets/x86_64-linux/lib/ /usr/local/cuda/lib64/
4141
RUN pip3 install colorama
4242
RUN pip3 install PuzzleLib --install-option="--backend=cuda"

0 commit comments

Comments
 (0)