Files
example-voting-app/result/dotnet/Dockerfile.1809
2019-08-29 07:33:43 -06:00

16 lines
323 B
Docker

FROM mcr.microsoft.com/dotnet/core/sdk:2.1 as builder
WORKDIR /Result
COPY Result/Result.csproj .
RUN dotnet restore
COPY /Result .
RUN dotnet publish -c Release -o /out Result.csproj
# app image
FROM mcr.microsoft.com/dotnet/core/aspnet:2.1
WORKDIR /app
ENTRYPOINT ["dotnet", "Result.dll"]
COPY --from=builder /out .