|
- #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.
-
- FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
- WORKDIR /app
- EXPOSE 80
- EXPOSE 443
-
- FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
- WORKDIR /src
- COPY ["BPA.KitChen.StoreManagement/BPA.KitChen.StoreManagement.csproj", "BPA.KitChen.StoreManagement/"]
- COPY ["BPA.KitChen.StoreManagement.Application/BPA.KitChen.StoreManagement.Application.csproj", "BPA.KitChen.StoreManagement.Application/"]
- COPY ["BPA.KitChen.StoreManagement.Core/BPA.KitChen.StoreManagement.Core.csproj", "BPA.KitChen.StoreManagement.Core/"]
- COPY ["BPA.KitChen.StoreManagement.SqlSugar/BPA.KitChen.StoreManagement.SqlSugar.csproj", "BPA.KitChen.StoreManagement.SqlSugar/"]
- RUN dotnet restore "BPA.KitChen.StoreManagement/BPA.KitChen.StoreManagement.csproj"
- COPY . .
- WORKDIR "/src/BPA.KitChen.StoreManagement"
- RUN dotnet build "BPA.KitChen.StoreManagement.csproj" -c Release -o /app/build
-
- FROM build AS publish
- RUN dotnet publish "BPA.KitChen.StoreManagement.csproj" -c Release -o /app/publish /p:UseAppHost=false
-
- FROM base AS final
- WORKDIR /app
- COPY --from=publish /app/publish .
- ENTRYPOINT ["dotnet", "BPA.KitChen.StoreManagement.dll"]
|