Skip to content

brianfalah/heroku-buildpack-gdal

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

heroku-buildpack-gdal

I am a Heroku buildpack that installs GDAL and its dependencies (proj).

When used by myself, I will install GDAL and proj libraries, headers, and binaries. Note: this does not currently include the Python bindings.

When used with heroku-buildpack-multi, I enable subsequent buildpacks / steps to link to these libraries.

Using

Standalone

When creating a new Heroku app:

heroku apps:create -b https://github.com/mojodna/heroku-buildpack-gdal.git

git push heroku master

When modifying an existing Heroku app:

heroku config:set BUILDPACK_URL=https://github.com/mojodna/heroku-buildpack-gdal.git

git push heroku master

Composed

When creating a new Heroku app:

heroku apps:create -b https://github.com/ddollar/heroku-buildpack-multi.git

cat << EOF > .buildpacks
https://github.com/mojodna/heroku-buildpack-gdal.git
https://github.com/heroku/heroku-buildpack-nodejs.git
EOF

git push heroku master

When modifying an existing Heroku app:

heroku config:set BUILDPACK_URL=https://github.com/ddollar/heroku-buildpack-multi.git

cat << EOF > .buildpacks
https://github.com/mojodna/heroku-buildpack-gdal.git
https://github.com/heroku/heroku-buildpack-nodejs.git
EOF

git push heroku master

Building

This uses Docker to build against Heroku stack-image-like images.

make

Artifacts will be dropped in dist/. See Dockerfiles for build options.

About

Heroku buildpack with GDAL and mdb-sqlite

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Makefile 59.1%
  • Shell 40.9%