├── .gitignore ├── .profile.d └── vips.sh ├── .travis.yml ├── CHANGES.md ├── LICENSE ├── README.md ├── bin ├── compile └── detect └── container ├── Dockerfile.heroku-20 └── Dockerfile.heroku-22 /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.profile.d/vips.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Newlywords/heroku-buildpack-vips/HEAD/.profile.d/vips.sh -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Newlywords/heroku-buildpack-vips/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Newlywords/heroku-buildpack-vips/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Newlywords/heroku-buildpack-vips/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Newlywords/heroku-buildpack-vips/HEAD/README.md -------------------------------------------------------------------------------- /bin/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Newlywords/heroku-buildpack-vips/HEAD/bin/compile -------------------------------------------------------------------------------- /bin/detect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Newlywords/heroku-buildpack-vips/HEAD/bin/detect -------------------------------------------------------------------------------- /container/Dockerfile.heroku-20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Newlywords/heroku-buildpack-vips/HEAD/container/Dockerfile.heroku-20 -------------------------------------------------------------------------------- /container/Dockerfile.heroku-22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Newlywords/heroku-buildpack-vips/HEAD/container/Dockerfile.heroku-22 --------------------------------------------------------------------------------