代码拉取完成,页面将自动刷新
#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
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
ARG BUILD_CONFIGURATION=Release
WORKDIR /src
COPY ["S_Incident.API/S_Incident.API.csproj", "S_Incident.API/"]
COPY ["CommonType/CommonType.csproj", "CommonType/"]
COPY ["S_Incident.Infrasturctre/S_Incident.Infrasturctre.csproj", "S_Incident.Infrasturctre/"]
COPY ["S_Incident.Domains/S_Incident.Domains.csproj", "S_Incident.Domains/"]
COPY ["S_Userinfor.Domains/S_Userinfor.Domains.csproj", "S_Userinfor.Domains/"]
RUN dotnet restore "./S_Incident.API/S_Incident.API.csproj"
COPY . .
WORKDIR "/src/S_Incident.API"
RUN dotnet build "./S_Incident.API.csproj" -c $BUILD_CONFIGURATION -o /app/build
FROM build AS publish
ARG BUILD_CONFIGURATION=Release
RUN dotnet publish "./S_Incident.API.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "S_Incident.API.dll"]
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。