From bf4d415aa242468621fc0fa9c12e6253a4f90a37 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Thu, 15 Aug 2024 06:43:54 -0400 Subject: [PATCH] Fix telemetry key file path in Dockerfile --- build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Dockerfile b/build/Dockerfile index 6309cec618..b301591833 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -50,7 +50,7 @@ RUN dotnet publish -c Release -o /app \ WORKDIR /repo/src/Tgstation.Server.Host -RUN export TGS_TELEMETRY_KEY_FILE="${TGS_TELEMETRY_KEY_FILE}" \ +RUN export TGS_TELEMETRY_KEY_FILE="../../${TGS_TELEMETRY_KEY_FILE}" \ && dotnet publish -c Release -o /app/lib/Default \ && cd ../.. \ && build/RemoveUnsupportedRuntimes.sh /app/lib/Default \