From 2e57b72895e479486f08024216c1695ff9e8a40e Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sat, 3 Dec 2022 09:39:22 -0600 Subject: [PATCH] Remove LANG env var Turns out the *fedora* container image doesn't include the en_US.UTF-8 locale, so it can't be used for `LANG`. The default is apparently `C.UTF-8` anyway, Unicode still works. --- Containerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Containerfile b/Containerfile index 2f7bdf9..90e4c42 100644 --- a/Containerfile +++ b/Containerfile @@ -10,5 +10,3 @@ RUN dnf install -y \ && dnf clean all \ COPY default-realm.krb5.conf /etc/krb5.conf.d/default-realm.conf - -ENV LANG=en_US.UTF-8