From f1ec42908797a8b0c05b7e580e4460a47946d2e6 Mon Sep 17 00:00:00 2001 From: Chris Kaczor Date: Tue, 15 Oct 2019 19:49:35 -0400 Subject: [PATCH] Add SQL workaround --- Power/Service/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Power/Service/Dockerfile b/Power/Service/Dockerfile index aec58ce..6c21cdc 100644 --- a/Power/Service/Dockerfile +++ b/Power/Service/Dockerfile @@ -13,4 +13,6 @@ RUN dotnet publish "Service.csproj" -c Release -o /app FROM base AS final WORKDIR /app COPY --from=build /app . +RUN apk add --no-cache icu-libs +ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false ENTRYPOINT ["dotnet", "ChrisKaczor.HomeMonitor.Power.Service.dll"] \ No newline at end of file