aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile.arm64
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2022-08-13 21:46:36 -0400
committerJoshua Boniface <joshua@boniface.me>2022-08-13 21:46:36 -0400
commitc7edf8b565e7d52400cf65e747a8e800ecd3a036 (patch)
treef2e173a6fe40697be1cf3d6c6482c08a0e9a3c18 /Dockerfile.arm64
parent010228b3c0230d9ede95cc53e3d82b798bb7975f (diff)
Backport pull request #8257 from jellyfin/release-10.8.z
Use separate args for dotnet publish commands Original-merge: d260f308106db648014a0bb3fd1911c838f899ce Merged-by: Joshua M. Boniface <joshua@boniface.me> Backported-by: Joshua Boniface <joshua@boniface.me>
Diffstat (limited to 'Dockerfile.arm64')
-rw-r--r--Dockerfile.arm642
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile.arm64 b/Dockerfile.arm64
index d0be834dd..790be1c39 100644
--- a/Dockerfile.arm64
+++ b/Dockerfile.arm64
@@ -55,7 +55,7 @@ ENV DOTNET_CLI_TELEMETRY_OPTOUT=1
# Discard objs - may cause failures if exists
RUN find . -type d -name obj | xargs -r rm -r
# Build
-RUN dotnet publish Jellyfin.Server --configuration Release --output="/jellyfin" --self-contained --runtime linux-arm64 "-p:DebugSymbols=false;DebugType=none"
+RUN dotnet publish Jellyfin.Server --configuration Release --output="/jellyfin" --self-contained --runtime linux-arm64 -p:DebugSymbols=false -p:DebugType=none
FROM app