Andrew Rabert 6 年 前
コミット
17c60f46db
2 ファイル変更4 行追加2 行削除
  1. 2 1
      Dockerfile
  2. 2 1
      Dockerfile.aarch64

+ 2 - 1
Dockerfile

@@ -17,7 +17,8 @@ RUN export DOTNET_CLI_TELEMETRY_OPTOUT=1 \
  && dotnet clean \
  && dotnet publish \
     --configuration release \
-    --output /jellyfin
+    --output /jellyfin \
+    Jellyfin.Server
 
 
 FROM microsoft/dotnet:${DOTNET_VERSION}-runtime

+ 2 - 1
Dockerfile.aarch64

@@ -8,7 +8,8 @@ RUN export DOTNET_CLI_TELEMETRY_OPTOUT=1 \
  && dotnet clean \
  && dotnet publish \
     --configuration release \
-    --output /jellyfin
+    --output /jellyfin \
+    Jellyfin.Server
 
 FROM microsoft/dotnet:${DOTNET_VERSION}-runtime
 COPY --from=builder /jellyfin /jellyfin