Skip to content

Commit c95a0a4

Browse files
committed
Update with Whisper models
1 parent 5460778 commit c95a0a4

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

pythonrpcserver.Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
WORKDIR /whisper.cpp
99
RUN git clone https://github.com/ggerganov/whisper.cpp . && make
1010
RUN bash ./models/download-ggml-model.sh base.en
11+
RUN bash ./models/download-ggml-model.sh tiny.en
12+
RUN bash ./models/download-ggml-model.sh large-v3
1113

1214
# ------------------------------
1315
# Stage 2: Setup Python RPC Server
@@ -18,7 +20,7 @@
1820

1921
ENV OMP_THREAD_LIMIT=1
2022
COPY --from=whisperbuild /whisper.cpp/main /usr/local/bin/whisper
21-
COPY --from=whisperbuild /whisper.cpp/models/ggml-base.en.bin /usr/local/bin/models/ggml-base.en.bin
23+
COPY --from=whisperbuild /whisper.cpp/models /PythonRpcServer/models
2224
WORKDIR /PythonRpcServer
2325

2426
COPY ./PythonRpcServer/requirements.txt requirements.txt

0 commit comments

Comments
 (0)