From c6d87373362d97fc053bf7f4364ef4159cb34e28 Mon Sep 17 00:00:00 2001 From: jingfelix Date: Sat, 22 Mar 2025 23:22:55 +0800 Subject: [PATCH] fix: missing dependency in runtime/python/Dockerfile Signed-off-by: jingfelix --- runtime/python/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/python/Dockerfile b/runtime/python/Dockerfile index 6b5e944..ae7e01f 100644 --- a/runtime/python/Dockerfile +++ b/runtime/python/Dockerfile @@ -5,7 +5,7 @@ WORKDIR /opt/CosyVoice RUN sed -i s@/archive.ubuntu.com/@/mirrors.aliyun.com/@g /etc/apt/sources.list RUN apt-get update -y -RUN apt-get -y install git unzip git-lfs +RUN apt-get -y install git unzip git-lfs g++ RUN git lfs install RUN git clone --recursive https://github.com/FunAudioLLM/CosyVoice.git # here we use python==3.10 because we cannot find an image which have both python3.8 and torch2.0.1-cu118 installed