From 6320b803df32dd30603d1beacb2781812e884a28 Mon Sep 17 00:00:00 2001 From: Sergey Gut Date: Mon, 3 Jan 2022 20:52:44 +0300 Subject: [PATCH] ICU support --- docker/Dockerfile.aarch64 | 3 ++- docker/Dockerfile.amd64 | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile.aarch64 b/docker/Dockerfile.aarch64 index 390a5a0..db3464a 100644 --- a/docker/Dockerfile.aarch64 +++ b/docker/Dockerfile.aarch64 @@ -27,8 +27,9 @@ WORKDIR /user COPY --from=build /app /app ENV MUSL_LOCPATH /usr/share/i18n/locales/musl +ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false -RUN apk add --no-cache cmake make musl-dev gcc gettext-dev libintl \ +RUN apk add --no-cache cmake make musl-dev gcc gettext-dev libintl icu-libs \ && wget https://gitlab.com/rilian-la-te/musl-locales/-/archive/master/musl-locales-master.zip \ && unzip musl-locales-master.zip \ && cd musl-locales-master \ diff --git a/docker/Dockerfile.amd64 b/docker/Dockerfile.amd64 index e3e457b..17ee95b 100644 --- a/docker/Dockerfile.amd64 +++ b/docker/Dockerfile.amd64 @@ -27,8 +27,9 @@ WORKDIR /user COPY --from=build /app /app ENV MUSL_LOCPATH /usr/share/i18n/locales/musl +ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false -RUN apk add --no-cache cmake make musl-dev gcc gettext-dev libintl \ +RUN apk add --no-cache cmake make musl-dev gcc gettext-dev libintl icu-libs \ && wget https://gitlab.com/rilian-la-te/musl-locales/-/archive/master/musl-locales-master.zip \ && unzip musl-locales-master.zip \ && cd musl-locales-master \