Skip to content

Commit 3aa60df

Browse files
authored
[HOTFIX] Delete longest build path updater from Dockerfile (#4928)
<!-- Link the GitHub or AzDO issue this pull request is associated with. Please copy and paste the full URL rather than using the dotnet/arcade-services# syntax --> I accidentally left it in, which resulted in a red build #4925
2 parents 627cd1b + 3d12e5b commit 3aa60df

File tree

1 file changed

+0
-7
lines changed
  • src/ProductConstructionService/ProductConstructionService.Api

1 file changed

+0
-7
lines changed

src/ProductConstructionService/ProductConstructionService.Api/Dockerfile

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ COPY ["src/ProductConstructionService/ProductConstructionService.BarViz/ProductC
2626
COPY ["src/ProductConstructionService/ProductConstructionService.Common/ProductConstructionService.Common.csproj", "./ProductConstructionService.Common/"]
2727
COPY ["src/ProductConstructionService/ProductConstructionService.DependencyFlow/ProductConstructionService.DependencyFlow.csproj", "./ProductConstructionService.DependencyFlow/"]
2828
COPY ["src/ProductConstructionService/ProductConstructionService.FeedCleaner/ProductConstructionService.FeedCleaner.csproj", "./ProductConstructionService.FeedCleaner/"]
29-
COPY ["src/ProductConstructionService/ProductConstructionService.LongestBuildPathUpdater/ProductConstructionService.LongestBuildPathUpdater.csproj", "./ProductConstructionService.LongestBuildPathUpdater/"]
3029
COPY ["src/ProductConstructionService/ProductConstructionService.ServiceDefaults/ProductConstructionService.ServiceDefaults.csproj", "./ProductConstructionService.ServiceDefaults/"]
3130
COPY ["src/ProductConstructionService/ProductConstructionService.SubscriptionTriggerer/ProductConstructionService.SubscriptionTriggerer.csproj", "./ProductConstructionService.SubscriptionTriggerer/"]
3231
COPY ["src/ProductConstructionService/ProductConstructionService.WorkItems/ProductConstructionService.WorkItems.csproj", "./ProductConstructionService.WorkItems/"]
@@ -35,7 +34,6 @@ COPY ["src/ProductConstructionService/Microsoft.DotNet.ProductConstructionServic
3534
RUN dotnet restore "./ProductConstructionService.Api/ProductConstructionService.Api.csproj"
3635
RUN dotnet restore "./ProductConstructionService.BarViz/ProductConstructionService.BarViz.csproj"
3736
RUN dotnet restore "./ProductConstructionService.FeedCleaner/ProductConstructionService.FeedCleaner.csproj"
38-
RUN dotnet restore "./ProductConstructionService.LongestBuildPathUpdater/ProductConstructionService.LongestBuildPathUpdater.csproj"
3937
RUN dotnet restore "./ProductConstructionService.SubscriptionTriggerer/ProductConstructionService.SubscriptionTriggerer.csproj"
4038

4139
WORKDIR /src/Maestro
@@ -59,10 +57,6 @@ WORKDIR ../ProductConstructionService.FeedCleaner
5957
RUN dotnet build -c $BUILD_CONFIGURATION -o /app/build --no-restore
6058
RUN dotnet publish -c $BUILD_CONFIGURATION -o /app/publish/FeedCleaner /p:UseAppHost=false /p:Version=${PACKAGE_VERSION}
6159

62-
WORKDIR ../ProductConstructionService.LongestBuildPathUpdater
63-
RUN dotnet build -c $BUILD_CONFIGURATION -o /app/build --no-restore
64-
RUN dotnet publish -c $BUILD_CONFIGURATION -o /app/publish/LongestBuildPathUpdater /p:UseAppHost=false /p:Version=${PACKAGE_VERSION}
65-
6660
WORKDIR ../ProductConstructionService.SubscriptionTriggerer
6761
RUN dotnet build -c $BUILD_CONFIGURATION -o /app/build --no-restore
6862
RUN dotnet publish -c $BUILD_CONFIGURATION -o /app/publish/SubscriptionTriggerer /p:UseAppHost=false /p:Version=${PACKAGE_VERSION}
@@ -77,7 +71,6 @@ RUN git config --global user.email "dotnet-maestro[bot]@users.noreply.github.com
7771
WORKDIR /app
7872
COPY --from=build /app/publish/ProductConstructionService ./ProductConstructionService
7973
COPY --from=build /app/publish/FeedCleaner ./FeedCleaner
80-
COPY --from=build /app/publish/LongestBuildPathUpdater ./LongestBuildPathUpdater
8174
COPY --from=build /app/publish/SubscriptionTriggerer ./SubscriptionTriggerer
8275

8376
EXPOSE 8080

0 commit comments

Comments
 (0)