소스 검색

Fix build

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