To use this repo on a cloudfoundry instance simply zip it up and provide it to as a supply buildpack to a cf push
Ex:
- Zip it up
# from the root of this repo, zip up buildpack excluding the .git directory
zip -r my-bp-name.zip . -x *.git*
- upload the buildpack to cloudfoundry
cf create-buildpack <uploaded-buildpack-name> my-bp-name.zip <index>
- push an app
cd <app-rootdir>
# note the buildpack created above cannot be the final buildpack
cf push my-app -b <uploaded-buildpack-name> -b <final-buildpack>