Replies: 2 comments 5 replies
-
You can use https://github.com/fagiani/apt-buildpack There is also work coming in Buildpacks to make this natively possible. The workstream is called Extensions support. It right now allows you to make extensions that modify the build image dynamically, but not the run image. Run image is coming in the next phase of the implementation, hopefully not that far off. When that support has landed, Paketo will be talking more about how users can take advantage of it for this specific use case. |
Beta Was this translation helpful? Give feedback.
-
Thank you @dmikusa for your response. I had already seen that repository with the buildpack, but it has two implications:
|
Beta Was this translation helpful? Give feedback.
-
Sometimes we need to add system dependencies like
libvips
for a Rails app, so we need a mechanism to install them inside the build and run images without to create a custom builder or stack. Heroku has something similar: https://github.com/heroku/heroku-buildpack-aptBeta Was this translation helpful? Give feedback.
All reactions