aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile.aarch64
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile.aarch64')
-rw-r--r--Dockerfile.aarch645
1 files changed, 4 insertions, 1 deletions
diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64
index da4acc841..cc70ef32f 100644
--- a/Dockerfile.aarch64
+++ b/Dockerfile.aarch64
@@ -6,7 +6,10 @@ COPY . .
RUN export DOTNET_CLI_TELEMETRY_OPTOUT=1 \
&& find . -type f -exec sed -i 's/netcoreapp2.1/netcoreapp3.0/g' {} \; \
&& dotnet clean \
- && dotnet publish --configuration release --output /jellyfin
+ && dotnet publish \
+ --configuration release \
+ --output /jellyfin \
+ Jellyfin.Server
FROM microsoft/dotnet:${DOTNET_VERSION}-runtime
COPY --from=builder /jellyfin /jellyfin