Skip to content

Commit

Permalink
[Merge] [#27] Set locale when building image
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-hess authored May 15, 2023
2 parents 18cf68d + 542148c commit a62133d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions dockerfile_base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ RUN ln -sn /usr/share/zoneinfo/${TIMEZONE} /etc/localtime \
&& echo ${TIMEZONE} > /etc/timezone \
&& apt -y install tzdata

# Set locale
RUN apt -y install locales \
&& locale-gen en_US.UTF-8 \
&& update-locale LANG=en_US.UTF-8 LC_MESSAGES=POSIX

# Install system packages
RUN DEBIAN_FRONTEND=noninteractive \
apt -y install munge \
Expand Down

0 comments on commit a62133d

Please sign in to comment.