This project is a Scalingo buildpack to use latest version of libvips (8.12.2) alongside your app.
It doesn't do anything else, you have to use it alongside another buildpack thanks to the multi-buildpack.
To use this buildpack, you should prepare .buildpacks
file that contains this buildpack url and your real buildpack url.
$ cat .buildpacks
https://github.com/jcamblan/scalingo-buildpack-vips.git
https://github.com/Scalingo/ruby-buildpack.git
The first buildpack will install libvips utilities in /app/bin
, the
second will handle the deployment of your ruby application. For any other
technology, go to
http://doc.scalingo.com/buildpacks/
$ scalingo env-set BUILDPACK_URL=https://github.com/Scalingo/multi-buildpack.git
$ git push scalingo master
...