I took mcr.microsoft.com/dotnet/framework/aspnet:3.5 as a base image for my windows container.To my application I want both 4.7 and 3.5 frameworks.I am unable to install 4.7 in my container.Could you please help me.
Asked
Active
Viewed 603 times
0
-
1What did you try to do to install it? Practice your steps on vanilla server core image and then incorporate it into dockerfile – Gregory Suvalian Apr 19 '19 at 13:48
-
I copied .Net Framework 4.7 exe into the container(by using aspnet:3.5 as base image) and ran the exe file using Start-Process and as well as Invoke-Item Commands.But the framework version is not showing the 4.7. – mohan Apr 19 '19 at 14:13
-
Does it work from command line (that is you docker exec into container and do it) – Gregory Suvalian Apr 19 '19 at 14:14
-
Can we install both the frameworks in the same windows container ? – mohan Apr 19 '19 at 14:17
-
Shall be able to install anything you want as long as it works in windows server core – Gregory Suvalian Apr 19 '19 at 14:42
-
I tried to enable the .Net Framework features in windows servercore:1803 image but it is not supporting. – mohan Apr 20 '19 at 05:39