FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build WORKDIR /src COPY ["SatelliteProvider.IntegrationTests/SatelliteProvider.IntegrationTests.csproj", "SatelliteProvider.IntegrationTests/"] COPY ["SatelliteProvider.TestSupport/SatelliteProvider.TestSupport.csproj", "SatelliteProvider.TestSupport/"] RUN dotnet restore "SatelliteProvider.IntegrationTests/SatelliteProvider.IntegrationTests.csproj" COPY . . WORKDIR "/src/SatelliteProvider.IntegrationTests" RUN dotnet build "SatelliteProvider.IntegrationTests.csproj" -c Release -o /app/build FROM build AS publish RUN dotnet publish "SatelliteProvider.IntegrationTests.csproj" -c Release -o /app/publish /p:UseAppHost=false FROM mcr.microsoft.com/dotnet/runtime:10.0 AS final WORKDIR /app COPY --from=publish /app/publish . ENTRYPOINT ["dotnet", "SatelliteProvider.IntegrationTests.dll"]