fix(infra): use valid Docker image tags for .NET 9.0
- Change dotnet/sdk:9.0.204-alpine3.19 to dotnet/sdk:9.0 - Change dotnet/aspnet:9.0.4-alpine3.19 to dotnet/aspnet:9.0 Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
This commit is contained in:
parent
0cd87d35a6
commit
2c7678c6de
1 changed files with 2 additions and 2 deletions
|
|
@ -5,7 +5,7 @@
|
|||
# ============================================
|
||||
# Build Stage
|
||||
# ============================================
|
||||
FROM mcr.microsoft.com/dotnet/sdk:9.0.204-alpine3.19 AS build
|
||||
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
|
||||
WORKDIR /src
|
||||
|
||||
# Copy project file and restore dependencies
|
||||
|
|
@ -32,7 +32,7 @@ FROM build AS publish
|
|||
# ============================================
|
||||
# Runtime Stage
|
||||
# ============================================
|
||||
FROM mcr.microsoft.com/dotnet/aspnet:9.0.4-alpine3.19 AS runtime
|
||||
FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS runtime
|
||||
WORKDIR /app
|
||||
|
||||
# Copy published app from publish stage
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue