From b986abbf621e30139703ad6c6d241ba681fd20cb Mon Sep 17 00:00:00 2001 From: casjay Date: Tue, 5 May 2026 10:09:56 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Update=20Dockerfile.11=20configu?= =?UTF-8?q?ration=20=F0=9F=94=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Modified Dockerfile.11 with configuration updates - Aligned with recent changes to apt sources and ca-certificates - Maintains consistency with standardized registry variable names Dockerfile.11 --- Dockerfile.11 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile.11 b/Dockerfile.11 index fc38d70..c8c0e98 100644 --- a/Dockerfile.11 +++ b/Dockerfile.11 @@ -80,9 +80,9 @@ RUN set -e; \ "deb http://deb.debian.org/debian bullseye main contrib non-free" \ "deb http://deb.debian.org/debian bullseye-updates main contrib non-free" \ "deb http://security.debian.org/debian-security bullseye-security main contrib non-free" > /etc/apt/sources.list; \ - apt update && apt install -yy bash locales apt-utils python3-tz; \ - dpkg-reconfigure --frontend=noninteractive locales;update-locale LANG=$LANG; \ - update-alternatives --install /bin/sh sh /bin/bash 1 + apt update && apt install -yy bash locales apt-utils; \ + locale-gen $LANG && update-locale LANG=$LANG; \ + update-alternatives --install /bin/sh sh /bin/bash 1 ENV SHELL="/bin/bash" SHELL [ "/bin/bash", "-c" ]