From 9e38fe239df5142a55ee91c33ec02f363965db7f Mon Sep 17 00:00:00 2001 From: xyzm Date: Tue, 10 Feb 2026 21:07:23 +0800 Subject: [PATCH] =?UTF-8?q?build:=20=E5=B0=86=20mime-support=20=E6=9B=BF?= =?UTF-8?q?=E6=8D=A2=E4=B8=BA=20media-types?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Debian 12 中已弃用 mime-support 包,media-types 是其替代品。此变更为确保在较新 Debian 版本中能成功构建镜像。 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0235da6..c191517 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,7 +44,7 @@ FROM debian:stable-slim ENV TZ=Asia/Shanghai RUN apt-get update \ - && apt-get install -y ca-certificates tzdata mime-support \ + && apt-get install -y ca-certificates tzdata media-types \ && rm -rf /var/lib/apt/lists/* WORKDIR /app