|
|
@@ -0,0 +1,30 @@ |
|
|
|
#See https://aka.ms/containerfastmode to understand 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 ["NuGet.config", "."] |
|
|
|
COPY ["BPA.MES.Base.Web.Entry/BPA.MES.Base.Web.Entry.csproj", "BPA.MES.Base.Web.Entry/"] |
|
|
|
COPY ["BPA.MES.Base.Web.Core/BPA.MES.Base.Web.Core.csproj", "BPA.MES.Base.Web.Core/"] |
|
|
|
COPY ["BPA.MES.Base.Application/BPA.MES.Base.Application.csproj", "BPA.MES.Base.Application/"] |
|
|
|
COPY ["BPA.MES.Base.Core/BPA.MES.Base.Core.csproj", "BPA.MES.Base.Core/"] |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
RUN dotnet restore "BPA.MES.Base.Web.Entry/BPA.MES.Base.Web.Entry.csproj" --configfile "NuGet.config" |
|
|
|
|
|
|
|
COPY . . |
|
|
|
WORKDIR "/src/BPA.MES.Base.Web.Entry" |
|
|
|
RUN dotnet build "BPA.MES.Base.Web.Entry.csproj" -c Release -o /app/build |
|
|
|
|
|
|
|
FROM build AS publish |
|
|
|
RUN dotnet publish "BPA.MES.Base.Web.Entry.csproj" -c Release -o /app/publish |
|
|
|
|
|
|
|
FROM base AS final |
|
|
|
WORKDIR /app |
|
|
|
COPY --from=publish /app/publish . |
|
|
|
ENTRYPOINT ["dotnet", "BPA.MES.Base.Web.Entry.dll"] |