An assembly specified in the application dependencies manifest was not found:
This error comes up when you try to run a .net core application without specifying target build environment output. You need to specify the "-r linux-x64" parameter and that will generate a list of all the assemblies required to run the dotnet core app in target environment.
RUN dotnet publish -c Release -r linux-x64 -o out
Comments