From 800a177c469ebf6b1700546be50514a394d2cd6c Mon Sep 17 00:00:00 2001 From: monlor Date: Wed, 17 Jul 2024 11:20:30 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E7=BC=BA=E5=A4=B1=E7=9A=84=E8=BD=AF=E4=BB=B6=E5=8C=85aria2=207?= =?UTF-8?q?z?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- metadata/Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/metadata/Dockerfile b/metadata/Dockerfile index 078a8ab..7bdfbd4 100644 --- a/metadata/Dockerfile +++ b/metadata/Dockerfile @@ -9,13 +9,13 @@ WORKDIR /media # 设置非交互模式,以避免安装过程中提示用户输入 ARG DEBIAN_FRONTEND=noninteractive -ENV LANG=zh_CN.UTF-8 \ - LANGUAGE=zh_CN:zh \ - LC_ALL=zh_CN.UTF-8 +ENV LANG=en_US.UTF-8 \ + LANGUAGE=en_US:zh \ + LC_ALL=en_US.UTF-8 RUN apt-get update && \ - apt-get install -y cron locales busybox unzip curl fd-find gzip lsof sqlite3 httpie jq tzdata && \ - locale-gen zh_CN.UTF-8 && \ + 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 && \ ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && \ apt-get autoremove -y && \ apt-get clean && \