It would be good to have instructions on how to do "vendoring" of dependencies when using conda as a package manager instead of pip.
I believe the instructions would be similar to the pip instructions
For example
- Create a virtual environment containing all of your dependencies
conda create -n app_vendor pandas numpy scikit-learn -- copy```
2) Copy contents of <env_dir>/lib/site-packages to `vendor` subdirectory under your main app directory.
3) Push your app to cloud foundry using `cf push`. The build-pack will install dependencies directly from the `vendor` directory