From 10e5a72e2c9679e716a36f965a8350246df0ea66 Mon Sep 17 00:00:00 2001 From: tcely Date: Wed, 23 Apr 2025 13:15:45 -0400 Subject: [PATCH] Match `--list-archive` output --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2c1af46f..29c5b0aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,9 +26,9 @@ ARG TARGETARCH ENV DEBIAN_FRONTEND="noninteractive" \ APT_KEEP_ARCHIVES=1 \ HOME="/root" \ - LANGUAGE="en_US.UTF-8" \ - LANG="en_US.UTF-8" \ - LC_ALL="en_US.UTF-8" \ + LANGUAGE="en_US.utf8" \ + LANG="en_US.utf8" \ + LC_ALL="en_US.utf8" \ TERM="xterm" \ # Do not include compiled byte-code PIP_NO_COMPILE=1 \ @@ -51,7 +51,7 @@ RUN --mount=type=cache,id=apt-lib-cache-${TARGETARCH},sharing=private,target=/va LC_ALL='C' LANG='C' LANGUAGE='C' \ apt-get -y --no-install-recommends install locales && \ # localedef -v -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8 && \ - printf -- "${LC_ALL} UTF-8\n" > /etc/locale.gen && \ + printf -- "en_US.UTF-8 UTF-8\n" > /etc/locale.gen && \ locale-gen && \ # Clean up apt-get -y autopurge && \