🔧 Update Dockerfile.11 configuration 🔧

- 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
This commit is contained in:
2026-05-05 10:09:56 -04:00
parent 1a8c7c2d8a
commit b986abbf62
+3 -3
View File
@@ -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" ]