aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVasily <JustAMan@users.noreply.github.com>2020-01-16 16:40:12 +0300
committerGitHub <noreply@github.com>2020-01-16 16:40:12 +0300
commit88d66d5f5cf122a8b41404e01d231d02aa516f8c (patch)
tree23f397d5eecc1de525966fb71ac8c571e1a79e2c
parentbc4c67e6fa4a7de34ebe20f2364e4f8af2a9eef0 (diff)
parentc3ff4e0b9f52827872d50b890ea4e4fbab22b604 (diff)
Merge pull request #2249 from Narfinger/docker-fix
fixes dockerfile building on recent linux installations
-rw-r--r--Dockerfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 53a425262..1cd864e0b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -14,7 +14,9 @@ FROM mcr.microsoft.com/dotnet/core/sdk:${DOTNET_VERSION}-buster as builder
WORKDIR /repo
COPY . .
ENV DOTNET_CLI_TELEMETRY_OPTOUT=1
-RUN dotnet publish Jellyfin.Server --configuration Release --output="/jellyfin" --self-contained --runtime linux-x64 "-p:GenerateDocumentationFile=false;DebugSymbols=false;DebugType=none"
+# because of changes in docker and systemd we need to not build in parallel at the moment
+# see https://success.docker.com/article/how-to-reserve-resource-temporarily-unavailable-errors-due-to-tasksmax-setting
+RUN dotnet publish Jellyfin.Server --disable-parallel --configuration Release --output="/jellyfin" --self-contained --runtime linux-x64 "-p:GenerateDocumentationFile=false;DebugSymbols=false;DebugType=none"
FROM jellyfin/ffmpeg:${FFMPEG_VERSION} as ffmpeg
FROM debian:buster-slim