Skip to content

Commit

Permalink
Update Dockerfile to use .NET 8.0 runtime
Browse files Browse the repository at this point in the history
The Dockerfile for the application has been updated to use the latest .NET 8.0 runtime instead of the older 6.0 version. This could optimize the application's performance and ensure latest features compatibility.
  • Loading branch information
Gary Woodfine committed Jan 18, 2024
1 parent 42072e3 commit 1a365af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Solution/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
### RUNTIME CONTAINER
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS runtime
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS runtime
WORKDIR /app
COPY .publish/ ./

Expand Down

0 comments on commit 1a365af

Please sign in to comment.