From e051a81384127fee0325bb2bedb2c418728f944c Mon Sep 17 00:00:00 2001 From: zontreck Date: Sat, 14 Sep 2024 02:17:12 -0700 Subject: [PATCH] Install locales as part of BASE --- DebianBase/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/DebianBase/Dockerfile b/DebianBase/Dockerfile index cdd6513..49fed18 100644 --- a/DebianBase/Dockerfile +++ b/DebianBase/Dockerfile @@ -13,8 +13,9 @@ ENV DEBIAN_FRONTEND=noninteractive RUN echo "LC_ALL=en_US.UTF-8" >> /etc/environment RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen RUN echo "LANG=en_US.UTF-8" >> /etc/locale.conf -RUN locale-gen en_US.UTF-8 RUN apt update; apt-get upgrade -y -RUN apt-get install -y rsync zip unzip file git +RUN apt-get install -y rsync zip unzip file git locales + +RUN locale-gen en_US.UTF-8