-
Notifications
You must be signed in to change notification settings - Fork 3
/
pythonrpcserver.Dockerfile
44 lines (32 loc) · 1.78 KB
/
pythonrpcserver.Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# # ------------------------------
# # Stage 1: Build Whisper.cpp
# # ------------------------------
FROM --platform=linux/amd64 python:3.8.15-slim-buster AS whisperbuild
RUN apt-get update && \
apt-get install -y curl gcc g++ make libglib2.0-0 libsm6 libxext6 libxrender-dev ffmpeg git
WORKDIR /whisper.cpp
RUN git clone https://github.com/ggerganov/whisper.cpp . && make
RUN bash ./models/download-ggml-model.sh base.en
RUN bash ./models/download-ggml-model.sh tiny.en
RUN bash ./models/download-ggml-model.sh large-v3
# ------------------------------
# Stage 2: Setup Python RPC Server
# ------------------------------
FROM --platform=linux/amd64 python:3.8.15-slim-buster AS rpcserver
RUN apt-get update && \
apt-get install -y curl gcc g++ make libglib2.0-0 libsm6 libxext6 libxrender-dev ffmpeg
ENV OMP_THREAD_LIMIT=1
COPY --from=whisperbuild /whisper.cpp/main /usr/local/bin/whisper
COPY --from=whisperbuild /whisper.cpp/models /PythonRpcServer/models
WORKDIR /PythonRpcServer
# Don't copy any py files here, so that we don't need to re-run whisper
COPY ./PythonRpcServer/transcribe_hellohellohello.wav .
# The output of tis whisper run is used when we set MOCK_RECOGNITION=MOCK for quick testing
RUN whisper -ojf -f transcribe_hellohellohello.wav
COPY ./PythonRpcServer/requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r requirements.txt
COPY ct.proto ct.proto
RUN python -m grpc_tools.protoc -I . --python_out=./ --grpc_python_out=./ ct.proto
COPY ./PythonRpcServer .
CMD [ "nice", "-n", "18", "ionice", "-c", "2", "-n", "6", "python3", "-u", "/PythonRpcServer/server.py" ]