From beda56abb020ae52cd0c4efb0364ff3fd22473db Mon Sep 17 00:00:00 2001 From: binary-husky Date: Thu, 30 May 2024 12:44:17 +0000 Subject: [PATCH] update dockerfile --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 97dba6f114..d54ba1ec2d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,10 @@ RUN echo '[global]' > /etc/pip.conf && \ WORKDIR /gpt +# TTS相关功能 +RUN apt update && apt install ffmpeg -y + + # 安装大部分依赖,利用Docker缓存加速以后的构建 (以下三行,可以删除) COPY requirements.txt ./ RUN pip3 install -r requirements.txt