From 48d70a4b875d7309e9299daf25194ec08872e934 Mon Sep 17 00:00:00 2001 From: monlor Date: Sun, 21 Jul 2024 10:29:18 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20=E4=B8=AD=E6=96=87?= =?UTF-8?q?=E4=B9=B1=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ✅ Closes: #215 --- metadata/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/metadata/Dockerfile b/metadata/Dockerfile index ae06ecd..1872712 100644 --- a/metadata/Dockerfile +++ b/metadata/Dockerfile @@ -9,11 +9,11 @@ WORKDIR /media # 设置非交互模式,以避免安装过程中提示用户输入 ARG DEBIAN_FRONTEND=noninteractive -ENV LANG=en_US.UTF-8 +ENV LANG=zh_CN.UTF-8 RUN apt-get update && \ - apt-get install -y cron locales busybox unzip curl fd-find gzip lsof sqlite3 httpie jq tzdata aria2 p7zip-full && \ - locale-gen en_US.UTF-8 && \ + apt-get install -y cron locales fonts-wqy-zenhei busybox unzip curl fd-find gzip lsof sqlite3 httpie jq tzdata aria2 p7zip-full && \ + locale-gen zh_CN.UTF-8 && \ ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && \ apt-get autoremove -y && \ apt-get clean && \