APT Buildpack

This buildpack adds support for apt-based dependencies during both build and runtime.

Credits

This add-on has been originally released by fagiani as a Cloud Native Buildpack.

Usage

Note: This buildpack is not compatible with the Ruby buildpack at this time.

For this buildpack to be installed, create an Aptfile at the root directory of your repository. Be aware that line ending should be LF, not CRLF.

Aptfile:

# you can list packages
libexample-dev

# or include links to specific .deb files
http://downloads.sourceforge.net/project/wkhtmltopdf/0.12.1/wkhtmltox-0.12.1_linux-precise-amd64.deb

# or add custom apt repos (only required if using packages outside of the standard Ubuntu APT repositories)
:repo:deb http://cz.archive.ubuntu.com/ubuntu artful main universe

If the Aptfile is present, Qoddi’s builder will automatically install it on your app and process it.

For more information, see this GitHub repository.

Was this helpful?

4 / 2