I am running my python application that has requirements.txt
file which contains various dependencies. I am deploying this application in a Pivotal Cloud Foundry environment. However, the environment I am deploying in it airgapped. Therefore I can't seem to get the dependencies.
The Git repo for python CF buildpack suggests that if an application has a vendor
directory then it might get the dependencies from there: https://github.com/cloudfoundry/python-buildpack/blob/master/bin/steps/pip-install#L18
My question is, how can I download the dependencies mentioned in my requirements.txt
file locally into a vendor
folder?