We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5460778 commit c95a0a4Copy full SHA for c95a0a4
1 file changed
pythonrpcserver.Dockerfile
@@ -8,6 +8,8 @@
8
WORKDIR /whisper.cpp
9
RUN git clone https://github.com/ggerganov/whisper.cpp . && make
10
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
13
14
# ------------------------------
15
# Stage 2: Setup Python RPC Server
@@ -18,7 +20,7 @@
18
20
19
21
ENV OMP_THREAD_LIMIT=1
22
COPY --from=whisperbuild /whisper.cpp/main /usr/local/bin/whisper
- 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
24
WORKDIR /PythonRpcServer
25
26
COPY ./PythonRpcServer/requirements.txt requirements.txt
0 commit comments