From bcf63e32baa4c3cec28f99975680cd3517b5d8a7 Mon Sep 17 00:00:00 2001 From: Erisa A Date: Wed, 15 Jan 2025 20:05:32 +0000 Subject: [PATCH] Upgrade DSharpPlus to 5.0.0-nightly-02449, disable invariant everywhere --- Cliptok.csproj | 6 ++++-- Dockerfile | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Cliptok.csproj b/Cliptok.csproj index c074da00..8d70ee9e 100644 --- a/Cliptok.csproj +++ b/Cliptok.csproj @@ -6,6 +6,8 @@ 13.0 d9345310-5908-4697-8613-28a24d06d183 + false + @@ -13,8 +15,8 @@ - - + + diff --git a/Dockerfile b/Dockerfile index c6b3ddb6..00c8a272 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,8 +25,10 @@ RUN touch dummy.txt && \ FROM mcr.microsoft.com/dotnet/runtime:9.0.0-alpine3.20 LABEL com.centurylinklabs.watchtower.enable=true WORKDIR /app -ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false -RUN apk add --no-cache git redis openssh icu-libs +ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false \ + LC_ALL=en_US.UTF-8 \ + LANG=en_US.UTF-8 +RUN apk add --no-cache git redis openssh icu-libs icu-data-full RUN git config --global --add safe.directory /app/Lists/Private COPY --from=build-env /app/out . ADD Lists ./Lists