From 452543a43181f603b6c00b4690cb1f87d1273c83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?William=20S=C3=B6derberg?= Date: Sat, 11 Jul 2026 17:03:32 +0200 Subject: [PATCH] Updated locale --- build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Dockerfile b/build/Dockerfile index 58022c6..e5f4d45 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -9,7 +9,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ && rm -rf /var/lib/apt/lists/* # 2. Setup Locales -RUN localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8 +RUN locale-gen en_US.UTF-8 ENV LANG=en_US.utf8 # 3. Copy Gradle (This is fine as is)