From 42fd60222eeff71caa2afd2381aa274ecf0e6124 Mon Sep 17 00:00:00 2001 From: monlor Date: Sun, 21 Jul 2024 21:14:43 +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 --- metadata/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/metadata/Dockerfile b/metadata/Dockerfile index 1872712..133b724 100644 --- a/metadata/Dockerfile +++ b/metadata/Dockerfile @@ -9,11 +9,11 @@ WORKDIR /media # 设置非交互模式,以避免安装过程中提示用户输入 ARG DEBIAN_FRONTEND=noninteractive -ENV LANG=zh_CN.UTF-8 +ENV LANG=C.UTF-8 RUN apt-get update && \ 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 && \ + locale-gen C.UTF-8 && \ ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && \ apt-get autoremove -y && \ apt-get clean && \