Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion dockerfiles/rocky/micro-integrator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ FROM rockylinux/rockylinux:10.0

ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'

RUN dnf install -y glibc-locale-source glibc-langpack-en \
RUN dnf clean all && dnf makecache \
&& dnf update -y \
&& dnf install -y glibc-locale-source glibc-langpack-en \
&& localedef -i en_US -f UTF-8 en_US.UTF-8 \
&& echo "LANG=en_US.UTF-8" > /etc/locale.conf \
&& echo "LC_ALL=en_US.UTF-8" >> /etc/environment
Expand Down