From 3189111a0ea7da261cf2782481b46d89ff8be2d7 Mon Sep 17 00:00:00 2001 From: Tyrrrz <1935960+Tyrrrz@users.noreply.github.com> Date: Sat, 11 Nov 2023 16:52:55 +0200 Subject: [PATCH] Install both the `iclu-libs` and `icu-data-full` in Docker --- DiscordChatExporter.Cli.dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/DiscordChatExporter.Cli.dockerfile b/DiscordChatExporter.Cli.dockerfile index 0cb0c04..1dc78d4 100644 --- a/DiscordChatExporter.Cli.dockerfile +++ b/DiscordChatExporter.Cli.dockerfile @@ -36,6 +36,7 @@ LABEL org.opencontainers.image.source="https://github.com/Tyrrrz/DiscordChatExpo LABEL org.opencontainers.image.licenses="MIT" # Alpine image doesn't come with the ICU libraries pre-installed, so we need to install them manually +RUN apk add --no-cache icu-libs RUN apk add --no-cache icu-data-full ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false