From f39d900fbba9d98457bd1007dad6c4a6335ca8ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szak=C3=A1ts=20Alp=C3=A1r=20Zsolt?= Date: Tue, 23 Sep 2025 18:33:31 +0200 Subject: [PATCH] Updates base image versions Updates the base images for both the ASP.NET runtime and the SDK to the stable 10.0 version. This ensures the application uses the latest stable dependencies. --- Source/ProofOfConcept/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/ProofOfConcept/Dockerfile b/Source/ProofOfConcept/Dockerfile index 3e2c798..4b3b3bf 100644 --- a/Source/ProofOfConcept/Dockerfile +++ b/Source/ProofOfConcept/Dockerfile @@ -1,9 +1,9 @@ -FROM mcr.microsoft.com/dotnet/aspnet:10.0-preview AS base +FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS base USER $APP_UID WORKDIR /app EXPOSE 8080 -FROM mcr.microsoft.com/dotnet/sdk:10.0-preview AS build +FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build ARG BUILD_CONFIGURATION=Release WORKDIR /src COPY ["ProofOfConcept/ProofOfConcept.csproj", "ProofOfConcept/"]