From 1d56204c58152fcb46b2fad95668261b4a6066bd Mon Sep 17 00:00:00 2001 From: ychung-mot Date: Fri, 25 Oct 2024 12:35:04 -0700 Subject: [PATCH] fix: aspnet image 7.0.19 --- server/Dockerfile.hangfire | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/Dockerfile.hangfire b/server/Dockerfile.hangfire index eee8abe4..0f55ac78 100644 --- a/server/Dockerfile.hangfire +++ b/server/Dockerfile.hangfire @@ -4,7 +4,7 @@ COPY . . RUN dotnet restore RUN dotnet publish "StrDss.Hangfire/StrDss.Hangfire.csproj" -c Release -o /app/published-app -FROM mcr.microsoft.com/dotnet/aspnet:7.0.18 AS runtime +FROM mcr.microsoft.com/dotnet/aspnet:7.0.19 AS runtime WORKDIR /app COPY --from=build /app/published-app . EXPOSE 8080