From e8d195a31c0a954f5064bb13bb59b1a99997629f Mon Sep 17 00:00:00 2001 From: Anton Troshin Date: Mon, 22 Jul 2024 16:26:26 -0500 Subject: [PATCH] Update tutorials pub-sub csharp-subscriber image to dotnet 8.0 (#1001) * Update tutorials pub-sub csharp-subscriber image to dotnet 8.0 Signed-off-by: Anton Troshin * Update Dockerfile Signed-off-by: Artur Souza --------- Signed-off-by: Anton Troshin Signed-off-by: Artur Souza Co-authored-by: Artur Souza --- tutorials/pub-sub/csharp-subscriber/Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tutorials/pub-sub/csharp-subscriber/Dockerfile b/tutorials/pub-sub/csharp-subscriber/Dockerfile index fc2f1bf5a..e7c0c2a1b 100644 --- a/tutorials/pub-sub/csharp-subscriber/Dockerfile +++ b/tutorials/pub-sub/csharp-subscriber/Dockerfile @@ -1,7 +1,6 @@ # Note: we cannot do a staged dotnet docker build here for arm/arm64. -# Build runtime image -FROM mcr.microsoft.com/dotnet/aspnet:7.0 +FROM mcr.microsoft.com/dotnet/aspnet:8.0 WORKDIR /app COPY /out . -ENTRYPOINT ["dotnet", "csharp-subscriber.dll"] \ No newline at end of file +ENTRYPOINT ["dotnet", "csharp-subscriber.dll"]