#Is it possible to ignore the `**/vendor/` directory upload when invoking Dagger?
1 messages · Page 1 of 1 (latest)
Issue tracking this: https://github.com/dagger/dagger/issues/8496
And this as well: https://github.com/dagger/dagger/issues/8548
Try adding it to your exclude list in dagger.json.
Oh, perfect. Thanks for pointing me to the tracking issues
@marble brook as a reference there's a stopgap today you can follow which is to add an exclude property in your dagger.json as well as the ignore filters in your pipeline. https://docs.dagger.io/api/filters
When you pass a directory to a Dagger Function as argument, Dagger uploads everything in that directory tree to the Dagger Engine. For large monorepos or directories containing large-sized files, this can significantly slow down your Dagger Function while filesystem contents are transferred. To mitigate this problem, Dagger lets you apply filter...