I am trying to start my .net core web api on container tech. using docker.
Environments=Windows 10,Visual Studio
Docker version:
Clien
In order for a dotnet command running inside a container to find your custom feeds, the nuget.config file must also be copied to the container.
To do this, add a nuget.config file with your private feed to your project folder and add an additional COPY step that copies this file to the container.
Example (Dockerfile):
WORKDIR ...
COPY NuGet.Config /
COPY ... ...