mirror of
https://github.com/dockersamples/example-voting-app.git
synced 2026-05-16 14:36:35 +00:00
16 lines
310 B
Docker
16 lines
310 B
Docker
FROM mcr.microsoft.com/dotnet/core/sdk:2.1 as builder
|
|
|
|
WORKDIR /Vote
|
|
COPY Vote/Vote.csproj .
|
|
RUN dotnet restore
|
|
|
|
COPY /Vote .
|
|
RUN dotnet publish -c Release -o /out Vote.csproj
|
|
|
|
# app image
|
|
FROM mcr.microsoft.com/dotnet/core/aspnet:2.1
|
|
|
|
WORKDIR /app
|
|
ENTRYPOINT ["dotnet", "Vote.dll"]
|
|
|
|
COPY --from=builder /out . |