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