cloudfoundry - Cf application in Bluemix - install dependency package -


i have spring boot application deployed cloud foundry app on bluemix. unfortunately core of app depends on external program (e.g. abc) can installed using apt-get install abc on desktop environment. there way install such dependency in cloud foundry environment?

many support

luca

i'm working on similar challenge r , using soon-to-be-discontinued git repo uses apt-get options allow redirect install folders/directories have write authority during staging process. you'll have update paths ensure can access installed code. install process multi-step,

  • define alternate path apt
  • define path installation
  • update apt
  • use apt-get install ... download necessary packages , associated dependencies
  • use dpkg install downloaded packages

Comments