From d402f1a41b672490075a6857e0354d1d95999205 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 30 Jun 2026 03:23:46 +0000 Subject: [PATCH] Bump the docker-images group across 1 directory with 2 updates Bumps the docker-images group with 2 updates in the /api directory: dotnet/sdk and dotnet/aspnet. Updates `dotnet/sdk` from 7.0 to 10.0 Updates `dotnet/aspnet` from 7.0 to 10.0 --- updated-dependencies: - dependency-name: dotnet/aspnet dependency-version: '10.0' dependency-type: direct:production update-type: version-update:semver-major dependency-group: docker-images - dependency-name: dotnet/sdk dependency-version: '10.0' dependency-type: direct:production update-type: version-update:semver-major dependency-group: docker-images ... Signed-off-by: dependabot[bot] --- api/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/Dockerfile b/api/Dockerfile index 088604e7..1b2a9060 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build WORKDIR /src # Copy solution and project files first for layer caching @@ -16,7 +16,7 @@ RUN dotnet restore COPY . . RUN dotnet publish Crt.Api/Crt.Api.csproj -c Release -o /app/publish --no-restore -FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS runtime +FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS runtime WORKDIR /app COPY --from=build /app/publish .