cloudnet-compose/vote/dotnet/Dockerfile

16 lines
334 B
Docker
Raw Permalink Normal View History

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 .