Skip to content

Commit

Permalink
Set locale to UTF-8
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbbe committed Aug 29, 2023
1 parent d75b0bc commit c25ec28
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ RUN apt-get update \

RUN mkdir -p /usr/share/man/man1mkdir -p /usr/share/man/man1

# Set locale to UTF-8
RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \
locale-gen
ENV LC_ALL en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en

# Install Java
RUN apt-get install -y openjdk-$OPENJDK_VERSION-jre

Expand Down

0 comments on commit c25ec28

Please sign in to comment.