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