'I am a newbie to Docker. I want to install .net Framework4.7.1 developer offline pack in windows server core2019 Through DOCKER as a windows container

I want to install .netframework 4.7.1 Developer offline pack in windows server core 2019 through docker and run it in a windows container. I have tried this command but no use in my Dockefile by copying it from my local directory to container.

**RUN start /w .\dotnet-framework-installer.exe /q **

I have downloaded .net framework dev pack from this site (https://dotnet.microsoft.com/en-us/download/dotnet-framework/net471)

I want to know which command to use in Dockerfile, so it can install in a container.



Solution 1:[1]

I have found the solution. You can find the dockerfile to install a developer pack offline mode in below git hub repo https://github.com/hrushikesh2000/Docker_Dev_pack-insta-.git.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Passionate_Developer