Windows docker image .net core throws error #3130
Replies: 2 comments 4 replies
-
C:\WINDOWS\system32>kubectl logs jobprocessor-function-5c57b6cb95-4hk5n |
Beta Was this translation helpful? Give feedback.
-
Can you share what you Dockerfile looks like? Usually this error is caused by one of two things. You are either trying to use the .NET CLI in a runtime image which does not contain the CLI. Use the dotnet/sdk images if this is the case. The other cause is that you are trying to run an application via |
Beta Was this translation helpful? Give feedback.
-
C:\WINDOWS\system32>kubectl logs jobprocessor-function-cfb955886-fmqbd -p
It was not possible to find any installed .NET Core SDKs
Did you mean to run .NET Core SDK commands? Install a .NET Core SDK from:
https://aka.ms/dotnet-download
getting above while checking pod log and pod status CrashLoopBackOff
Even though i have installed - FROM mcr.microsoft.com/dotnet/core/runtime:3.1-nanoserver-1803 AS base
Beta Was this translation helpful? Give feedback.
All reactions