Skip to content

Commit

Permalink
Reordering of LANG env def
Browse files Browse the repository at this point in the history
  • Loading branch information
DoggySazHi committed Feb 9, 2024
1 parent 5e2763b commit 4d9c9ba
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions ignite.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@ FROM itzg/minecraft-server:java21-graalvm
LABEL org.opencontainers.image.authors="DoggySazHi <reimu@williamle.com>"
LABEL org.opencontainers.image.version="v0.0.1"

ENV LANG='en_US.UTF-8'
RUN dnf reinstall glibc-common -yq
RUN dnf install ansible glibc-langpack-en glibc-locale-source rclone wget unzip jq -yq

RUN dnf install ansible glibc-langpack-en glibc-locale-source rclone wget unzip jq -y
RUN localedef -c -i en_US -f UTF-8 en_US.UTF-8
RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
RUN localedef -c -i en_US -f UTF-8 en_US.UTF-8 --quiet
RUN echo "LANG=en_US.UTF-8" > /etc/locale.conf
ENV LANG en_US.UTF-8

ARG KEEPUP_VERSION=1.2.3

Expand Down

0 comments on commit 4d9c9ba

Please sign in to comment.