aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile.arm64
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile.arm64')
-rw-r--r--Dockerfile.arm648
1 files changed, 2 insertions, 6 deletions
diff --git a/Dockerfile.arm64 b/Dockerfile.arm64
index 5c67f85c9..b85f8735b 100644
--- a/Dockerfile.arm64
+++ b/Dockerfile.arm64
@@ -18,12 +18,8 @@ RUN find . -type f -exec sed -i 's/netcoreapp2.1/netcoreapp3.0/g' {} \;
# Discard objs - may cause failures if exists
RUN find . -type d -name obj | xargs -r rm -r
# Build
-RUN dotnet publish \
- -r linux-arm64 \
- --configuration release \
- --output /jellyfin \
- "-p:GenerateDocumentationFile=false;DebugSymbols=false;DebugType=none" \
- Jellyfin.Server
+RUN bash -c "source deployment/common.build.sh && \
+ build_jellyfin Jellyfin.Server Release linux-arm64 /jellyfin"
FROM microsoft/dotnet:${DOTNET_VERSION}-runtime-stretch-slim-arm64v8