Skip to content

Commit

Permalink
chore: ロケール設定を追加
Browse files Browse the repository at this point in the history
  • Loading branch information
rito528 committed Mar 26, 2024
1 parent 6f27397 commit 93e95de
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,11 @@ 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 localedef -f UTF-8 -i ja_JP ja_JP.UTF-8 && \
LANG=ja_JP.UTF-8 && \
export LANG
# localeの設定
RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8

COPY --from=build-env --link /app/target/release/seichiassist-downloader /
CMD ["./seichiassist-downloader"]
Expand Down

0 comments on commit 93e95de

Please sign in to comment.