-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
24 lines (20 loc) · 1.01 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging.
# Run this command from sln directory: docker build -t dilansd .
FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base
WORKDIR /app
EXPOSE 80
EXPOSE 443
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
WORKDIR /src
COPY ["Src/BlazorServer/Dilan.GrpcServiceDiscovery.BlazorServer.csproj", "Src/BlazorServer/"]
COPY ["Src/Grpc/Dilan.GrpcServiceDiscovery.Grpc.csproj", "Src/Grpc/"]
RUN dotnet restore "Src/BlazorServer/Dilan.GrpcServiceDiscovery.BlazorServer.csproj"
COPY . .
WORKDIR "/src/Src/BlazorServer"
RUN dotnet build "Dilan.GrpcServiceDiscovery.BlazorServer.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "Dilan.GrpcServiceDiscovery.BlazorServer.csproj" -c Release -o /app/publish /p:UseAppHost=false
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "Dilan.GrpcServiceDiscovery.BlazorServer.dll"]