Skip to content

Commit

Permalink
[Update] docker file to sdk:9.0 and aspnet:9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
samatstariongroup committed Jan 19, 2025
1 parent 41460d1 commit 0159087
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions reqifviewer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1.4

FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build

COPY Nuget.Config .
COPY reqifviewer reqifviewer
Expand All @@ -12,7 +12,7 @@ RUN dotnet build "reqifviewer/reqifviewer.csproj" -c Release -o /app/build --no-
FROM build AS publish
RUN dotnet publish reqifviewer -c Release -o /app/publish

FROM mcr.microsoft.com/dotnet/aspnet:8.0.7-alpine3.19 AS final
FROM mcr.microsoft.com/dotnet/aspnet:9.0.1-alpine3.21 AS final

WORKDIR /app
RUN mkdir /app/logs
Expand Down

0 comments on commit 0159087

Please sign in to comment.