Enhance Dockerfiles

* Prevent failure when obj exists from host compile
* Enhance readability of disposed stages
* Formatting
This commit is contained in:
Andrew Rabert
2019-02-16 01:37:55 -05:00
parent c44f96b727
commit d9ab654abe
3 changed files with 22 additions and 17 deletions

View File

@@ -3,9 +3,8 @@ ARG DOTNET_VERSION=2
FROM microsoft/dotnet:${DOTNET_VERSION}-sdk as builder
WORKDIR /repo
COPY . .
RUN export DOTNET_CLI_TELEMETRY_OPTOUT=1 \
&& dotnet clean \
&& dotnet publish \
ENV DOTNET_CLI_TELEMETRY_OPTOUT=1
RUN dotnet publish \
--configuration release \
--output /jellyfin \
Jellyfin.Server