From 03e513611df4bc56383a7ab031027d83a22726bc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 10 Jun 2026 14:57:43 +0000 Subject: [PATCH] Bump dotnet/aspnet from 10.0.8 to 10.0.9 in /src/API.Web Bumps dotnet/aspnet from 10.0.8 to 10.0.9. --- updated-dependencies: - dependency-name: dotnet/aspnet dependency-version: 10.0.9 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- src/API.Web/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/API.Web/Dockerfile b/src/API.Web/Dockerfile index 70c3e93a..2d9f7918 100644 --- a/src/API.Web/Dockerfile +++ b/src/API.Web/Dockerfile @@ -6,7 +6,7 @@ RUN dotnet restore --runtime linux-$TARGETARCH WORKDIR /source/src/API.Web RUN dotnet publish --no-restore --configuration Release --runtime linux-$TARGETARCH --no-self-contained --output /app -FROM --platform=$TARGETARCH mcr.microsoft.com/dotnet/aspnet:10.0.8 AS runtime +FROM --platform=$TARGETARCH mcr.microsoft.com/dotnet/aspnet:10.0.9 AS runtime RUN apt-get update && apt-get upgrade -y && apt-get install -y curl=8.5.0-2ubuntu10.9 && apt-get clean WORKDIR /app COPY --link --from=build /app .