From d3dd927dd5416e2273b8f662afc88c97e75cdd80 Mon Sep 17 00:00:00 2001 From: Endial Fang Date: Tue, 14 Jul 2020 08:45:52 +0800 Subject: [PATCH] =?UTF-8?q?[fix:10]=E4=BF=AE=E5=A4=8DDockerfile=E8=84=9A?= =?UTF-8?q?=E6=9C=AC=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 10/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/10/Dockerfile b/10/Dockerfile index 51cf4f5..d386cc5 100644 --- a/10/Dockerfile +++ b/10/Dockerfile @@ -108,7 +108,7 @@ RUN set -eux; \ # 安装 UTF-8 编码。需要安装 locales 软件包 localedef -c -i en_US -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8; \ echo 'en_GB.UTF-8 UTF-8\nen_US.UTF-8 UTF-8' >> /etc/locale.gen && locale-gen; \ - update-locale LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8 LC_ALL=en_US.UTF-8 LC_MESSAGES=POSIX && dpkg-reconfigure locales; + update-locale LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8 LC_ALL=en_US.UTF-8 LC_MESSAGES=POSIX && dpkg-reconfigure locales; \ \ # 检测是否存在对应版本的 overrides 脚本文件;如果存在,执行 { [ ! -e "/usr/local/overrides/overrides-${APP_VERSION}.sh" ] || /bin/bash "/usr/local/overrides/overrides-${APP_VERSION}.sh"; }; \