From 2f0c6d86b98cfc0d1cf250a8a41cc8b7bedb3134 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 Nov 2025 14:36:45 +0000 Subject: [PATCH] build(deps): bump dotnet/aspnet in /src/Services/DataIngestor Bumps dotnet/aspnet from 8.0 to 10.0. --- updated-dependencies: - dependency-name: dotnet/aspnet dependency-version: '10.0' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- src/Services/DataIngestor/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Services/DataIngestor/Dockerfile b/src/Services/DataIngestor/Dockerfile index e5ce79d..619c0e0 100644 --- a/src/Services/DataIngestor/Dockerfile +++ b/src/Services/DataIngestor/Dockerfile @@ -24,7 +24,7 @@ FROM build AS publish RUN dotnet publish "DataIngestor.API.csproj" -c Release -o /app/publish /p:UseAppHost=false # Runtime stage -FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS final +FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS final WORKDIR /app # Install curl for health checks