From dfa9645bfb837de2a239437ee5177851b31b8e24 Mon Sep 17 00:00:00 2001 From: rito528 <39003544+rito528@users.noreply.github.com> Date: Wed, 27 Mar 2024 01:41:40 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=E3=83=AD=E3=82=B1=E3=83=BC=E3=83=AB?= =?UTF-8?q?=E3=82=92UTF-8=E3=81=AB=E8=A8=AD=E5=AE=9A=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index c236269..c944a2f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,12 +31,8 @@ RUN echo "deb https://repo.scala-sbt.org/scalasbt/debian all main" | tee /etc/ap RUN apt-get update && \ apt-get install -y sbt -# 日本語関連のパーケージをインストール -RUN apt-get install -y language-pack-ja-base language-pack-ja - -# ロケールを日本語に設定する -RUN update-locale LANG=ja_JP.UTF-8 LANGUAGE="ja_JP:ja" && \ - echo "export LANG=ja_JP.UTF-8" >> /home/$USERNAME/.bashrc +# ロケールをUTF-8に設定する +ENV LANG C.UTF-8 COPY --from=build-env --link /app/target/release/seichiassist-downloader / CMD ["./seichiassist-downloader"]