From 4f9a933be5812a366c479130806c81d161f7818c Mon Sep 17 00:00:00 2001 From: Jaxel Rojas Date: Wed, 27 Nov 2024 09:57:55 -0400 Subject: [PATCH] fix: dockerfile definition --- Content/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content/Dockerfile b/Content/Dockerfile index 82f5d8a..a172114 100644 --- a/Content/Dockerfile +++ b/Content/Dockerfile @@ -1,6 +1,6 @@ -FROM mcr.microsoft.com/dotnet/aspnet:8.0 +FROM mcr.microsoft.com/dotnet/aspnet:9.0 LABEL name="CarterService" -COPY src/bin/Release/net8.0/publish/ App/ +COPY src/bin/Release/net9.0/publish/ App/ WORKDIR /App EXPOSE 80 ENTRYPOINT ["dotnet", "CarterService.dll"]