From 9f7530cbe5785f2eb4dfbe07e200485ef0f0dc86 Mon Sep 17 00:00:00 2001 From: Chris Kaczor Date: Sat, 13 Jan 2024 21:42:28 -0500 Subject: [PATCH] Disable globalization and fix SQL port --- Environment/Service/Dockerfile | 1 + Environment/Service/deploy/manifest.yaml | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Environment/Service/Dockerfile b/Environment/Service/Dockerfile index e7c8478..63328d3 100644 --- a/Environment/Service/Dockerfile +++ b/Environment/Service/Dockerfile @@ -14,4 +14,5 @@ FROM base AS final RUN apk add --no-cache tzdata WORKDIR /app COPY --from=build /app . +ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false ENTRYPOINT ["dotnet", "ChrisKaczor.HomeMonitor.Environment.Service.dll"] \ No newline at end of file diff --git a/Environment/Service/deploy/manifest.yaml b/Environment/Service/deploy/manifest.yaml index 8799fe9..12e03d7 100644 --- a/Environment/Service/deploy/manifest.yaml +++ b/Environment/Service/deploy/manifest.yaml @@ -33,6 +33,8 @@ spec: value: "Y" - name: MSSQL_PID value: Express + - name: MSSQL_TCP_PORT + value: "1435" - name: TZ value: America/New_York volumeMounts: @@ -61,7 +63,7 @@ metadata: spec: ports: - name: client - port: 1433 + port: 1435 selector: app: environment-database type: LoadBalancer