Merge pull request #80 from nvllsvm/telemetry

Opt out of .NET telemetry
This commit is contained in:
Anthony Lavado 2018-12-12 00:38:35 -05:00 committed by GitHub
commit 824f26f4a1

View file

@ -4,7 +4,8 @@ FROM microsoft/dotnet:${DOTNET_VERSION}-sdk as builder
WORKDIR /repo
COPY . .
ARG CONFIGURATION=RELEASE
RUN dotnet clean \
RUN export DOTNET_CLI_TELEMETRY_OPTOUT=1 \
&& dotnet clean \
&& dotnet build --configuration ${CONFIGURATION} $(pwd)/MediaBrowser.sln \
&& dotnet publish --configuration ${CONFIGURATION} $(pwd)/MediaBrowser.sln --output /jellyfin