Updates base image versions
All checks were successful
Build, Push and Run Container / build (push) Successful in 1m8s
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:
@@ -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/"]
|
||||||
|
|||||||
Reference in New Issue
Block a user