aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorAndrew Rabert <6550543+nvllsvm@users.noreply.github.com>2019-01-13 20:39:42 +0000
committerGitHub <noreply@github.com>2019-01-13 20:39:42 +0000
commitf50a997e4061f537e643f813bd873cb202707f0a (patch)
treed55d53176c528b626f5af5a2a394d3425a25bebf /Dockerfile
parent006e81588a677491713457c54be884b26958452b (diff)
parent17c60f46dbe88adc6fa465027b961de014dcd94f (diff)
Merge pull request #580 from nvllsvm/fixbuild
Fix Docker build
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 75700e6f52..e4cbede80c 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -15,7 +15,10 @@ WORKDIR /repo
COPY . .
RUN export DOTNET_CLI_TELEMETRY_OPTOUT=1 \
&& dotnet clean \
- && dotnet publish --configuration release --output /jellyfin
+ && dotnet publish \
+ --configuration release \
+ --output /jellyfin \
+ Jellyfin.Server
FROM microsoft/dotnet:${DOTNET_VERSION}-runtime