Updates base image versions
All checks were successful
Build, Push and Run Container / build (push) Successful in 1m8s

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.
This commit is contained in:
2025-09-23 18:33:31 +02:00
parent 387ef9e70a
commit f39d900fbb

View File

@@ -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 USER $APP_UID
WORKDIR /app WORKDIR /app
EXPOSE 8080 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 ARG BUILD_CONFIGURATION=Release
WORKDIR /src WORKDIR /src
COPY ["ProofOfConcept/ProofOfConcept.csproj", "ProofOfConcept/"] COPY ["ProofOfConcept/ProofOfConcept.csproj", "ProofOfConcept/"]