Dockerfile.ci COPYs full project directories after restoring inside the container. Without a .dockerignore, the host's obj/bin (built with a different local SDK than the container's) got copied over the container's fresh restore output, corrupting project.assets.json and crashing ResolvePackageAssets with a NullReferenceException on publish.
8 lines
62 B
Plaintext
8 lines
62 B
Plaintext
**/bin/
|
|
**/obj/
|
|
**/node_modules/
|
|
**/dist/
|
|
.git/
|
|
.husky/
|
|
docs/
|