2018-09-26 20:41:20 +02:00
|
|
|
FROM microsoft/dotnet:2.1-sdk-nanoserver-sac2016 as builder
|
2018-09-26 11:29:39 +02:00
|
|
|
|
|
|
|
WORKDIR /Result
|
|
|
|
COPY Result/Result.csproj .
|
|
|
|
RUN dotnet restore
|
|
|
|
|
|
|
|
COPY /Result .
|
|
|
|
RUN dotnet publish -c Release -o /out Result.csproj
|
|
|
|
|
|
|
|
# app image
|
2018-09-26 20:41:20 +02:00
|
|
|
FROM microsoft/dotnet:2.1-aspnetcore-runtime-nanoserver-sac2016
|
2018-09-26 11:29:39 +02:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
ENTRYPOINT ["dotnet", "Result.dll"]
|
|
|
|
|
|
|
|
COPY --from=builder /out .
|