Each time I build Dockerfile with ASP.NET Core application it's download assemblies from web Nuget store.
Basically I'd like to create docker image with all this ASP.NET Core libraries (and probably some libraries I usually use).
From my understanding I trying to reinvent GAC.
So, my question is it possible to use something like GAC for ASP.NET Core? Or, my second thought, download ASP.NET Core libraries to container and then resolve it locally somehow.
My goal is to reduse time for building docker container.
UPDATE
Looks like it's impossible