aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2020-09-03 14:46:35 -0400
committerGitHub <noreply@github.com>2020-09-03 14:46:35 -0400
commit53703566b5e1239bbab308031d94df34a4d168aa (patch)
tree57b26d52fdeba13449e89840e32e7aa07fddfb72 /Dockerfile
parent52aea85e7fa5b3e3eef965b434b79829ccecde46 (diff)
parent44fb76bbcf3080b6cc2795925452bec69a0d8402 (diff)
Merge pull request #4008 from crobibero/publish-with-docs
Include xml docs when publishing
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index d3fb138a81..4fdffc7400 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -14,7 +14,7 @@ COPY . .
ENV DOTNET_CLI_TELEMETRY_OPTOUT=1
# 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"
+RUN dotnet publish Jellyfin.Server --disable-parallel --configuration Release --output="/jellyfin" --self-contained --runtime linux-x64 "-p:GenerateDocumentationFile=true;DebugSymbols=false;DebugType=none"
FROM debian:buster-slim