From b1297bb7df8d74601543bb362e7f68a51d3f7199 Mon Sep 17 00:00:00 2001 From: Tyrrrz <1935960+Tyrrrz@users.noreply.github.com> Date: Sat, 11 Nov 2023 16:56:49 +0200 Subject: [PATCH] Set default locale in Docker --- DiscordChatExporter.Cli.dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/DiscordChatExporter.Cli.dockerfile b/DiscordChatExporter.Cli.dockerfile index 1dc78d4..350cebc 100644 --- a/DiscordChatExporter.Cli.dockerfile +++ b/DiscordChatExporter.Cli.dockerfile @@ -39,6 +39,8 @@ LABEL org.opencontainers.image.licenses="MIT" RUN apk add --no-cache icu-libs RUN apk add --no-cache icu-data-full ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false +ENV LC_ALL=en_US.UTF-8 +ENV LANG=en_US.UTF-8 # Create a non-root user to run the app, so that the output files can be accessed by the host # https://github.com/Tyrrrz/DiscordChatExporter/issues/851