15 lines
597 B
Docker
15 lines
597 B
Docker
FROM zibo.harbor.iluvatar.com.cn:30000/saas/bi100-3.2.1-x86-ubuntu20.04-py3.10-poc-llm-infer:v1.2.2
|
|
|
|
RUN pip install --no-cache-dir torch==2.1.0+corex.3.2.1 torchaudio==2.1.0+corex.3.2.1 pyannote.audio av
|
|
|
|
COPY ./pyannote_models/pyannote-wespeaker-voxceleb-resnet34-LM /model
|
|
|
|
COPY ./src/filesystem_storage.py /workspace/filesystem_storage.py
|
|
COPY ./src/speaker_identification.py /workspace/speaker_identification.py
|
|
COPY ./src/iflytek_interface_server.py /workspace/iflytek_interface_server.py
|
|
COPY ./launch_service /workspace/launch_service
|
|
|
|
WORKDIR /workspace/
|
|
|
|
ENTRYPOINT ["./launch_service"]
|