Heroku buildpack with libvips installed. A buildpack for the modern Heroku stacks.
Run the commands below to add this buildpack to your app:
$ heroku buildpacks:add --index 1 https://github.com/hardpixel/heroku-buildpack-vips
Deploy to Heroku and verify the result by running this command:
$ heroku run vips -v
vips 8.14.4
You can select the preferred version by setting the VIPS_VERSION
environment variable. It defaults to the latest stable release. Check the available versions in the releases page.
$ heroku config:set VIPS_VERSION=8.13.0
You can block untrusted operations at runtime by setting the VIPS_BLOCK_UNTRUSTED
environment variable. Then any operation that is tagged as untrusted will be prevented from running. More information available here.
$ heroku config:set VIPS_BLOCK_UNTRUSTED=true
The buildpack is available as open source under the terms of the MIT License.