This commit is contained in:
xiaolipro 2025-01-05 20:56:21 +08:00
parent 821e2bd879
commit efa19fb6f4

View File

@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:8.0.303 AS build
FROM mcr.microsoft.com/dotnet/sdk:8.0.303 AS base
ARG BUILD_CONFIGURATION=Release
WORKDIR /src
COPY . /src
@ -6,7 +6,7 @@ RUN dotnet restore "src/InterfaceForward.Api/InterfaceForward.Api.csproj"
WORKDIR "/src/InterfaceForward.Api"
RUN dotnet build "InterfaceForward.Api.csproj" -c $BUILD_CONFIGURATION -o /app/build
FROM build AS publish
FROM base AS publish
ARG BUILD_CONFIGURATION=Release
RUN dotnet publish "InterfaceForward.Api.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false