Skip to content

Commit

Permalink
Merge pull request #26 from chrisbbe/master
Browse files Browse the repository at this point in the history
Set locale to UTF-8
  • Loading branch information
jaimesantosferreira authored Aug 31, 2023
2 parents d75b0bc + c25ec28 commit 191fba4
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 191fba4

Please sign in to comment.