From c81373941be972c943149cd47b035ed16a57108c Mon Sep 17 00:00:00 2001 From: xugo Date: Fri, 27 Mar 2026 21:11:26 +0800 Subject: [PATCH] =?UTF-8?q?fix(dockerfile):=20=E4=BF=AE=E5=A4=8D=20AI=20?= =?UTF-8?q?=E5=88=86=E6=9E=90=E7=8E=AF=E5=A2=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile_ai | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile_ai b/Dockerfile_ai index f94d746..257b09e 100644 --- a/Dockerfile_ai +++ b/Dockerfile_ai @@ -50,10 +50,12 @@ RUN sed -i 's|http://archive.ubuntu.com|http://mirrors.aliyun.com|g; s|http://se # 安装运行时依赖(极简版) # Ubuntu 24.04 已预装 libstdc++6, libgcc-s1, libssl3t64 -# libpython3.12 是 MediaServer 内嵌 Python 3.12 解释器的核心依赖 +# python3: analysis 脚本需要解释器 +# libpython3.12: MediaServer 内嵌 Python 3.12 需要共享库(python3 包不含 .so) RUN apt-get update && apt-get install -y --no-install-recommends \ ca-certificates \ tzdata \ + python3 \ libpython3.12 \ && rm -rf /var/lib/apt/lists/* \ && apt-get clean