Merge remote-tracking branch 'upstream/dev' into build-system-consolidation

This commit is contained in:
Erwin de Haan
2019-01-13 23:28:05 +01:00
569 changed files with 4929 additions and 6093 deletions

View File

@@ -15,7 +15,10 @@ WORKDIR /repo
COPY . .
RUN export DOTNET_CLI_TELEMETRY_OPTOUT=1 \
&& dotnet clean \
&& dotnet publish --configuration release --output /jellyfin Jellyfin.Server
&& dotnet publish \
--configuration release \
--output /jellyfin \
Jellyfin.Server
FROM microsoft/dotnet:${DOTNET_VERSION}-runtime