Skip to content

Commit abb7f08

Browse files
committed
hot fix whisper build
1 parent 86b1a17 commit abb7f08

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

pythonrpcserver.Dockerfile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,11 @@
66
apt-get install -y curl gcc g++ make libglib2.0-0 libsm6 libxext6 libxrender-dev ffmpeg git
77

88
WORKDIR /whisper.cpp
9-
RUN git clone https://github.com/ggerganov/whisper.cpp . && make
10-
RUN bash ./models/download-ggml-model.sh base.en
9+
# RUN git clone https://github.com/ggerganov/whisper.cpp . && make
10+
RUN git clone https://github.com/ggerganov/whisper.cpp . && \
11+
git checkout 021eef1 && \
12+
make
13+
RUN bash ./models/download-ggml-model.sh base.en
1114
RUN bash ./models/download-ggml-model.sh tiny.en
1215
RUN bash ./models/download-ggml-model.sh large-v3
1316

@@ -41,4 +44,4 @@
4144
CMD [ "nice", "-n", "18", "ionice", "-c", "2", "-n", "6", "python3", "-u", "/PythonRpcServer/server.py" ]
4245

4346

44-
47+

0 commit comments

Comments
 (0)