Concepts

What is a buildpack?

A buildpack is software that transforms application source code into runnable artifacts by analyzing the code and determining the best way to build it.

What is the lifecycle?

The lifecycle is a binary responsible for orchestrating buildpacks.

What is a buildpack group?

A buildpack group is a list of individual buildpacks that are designed to work together to build an application.

What are targets?

The concept of targets is used to identify compatibility between buildpacks and base images.

What caching strategies are available to buildpacks?

Learn strategies for caching layers at build-time for future re-use.

What is a buildpack dependency layer?

Dependency layers are semantically meaningful layers that are contributed by one or more buildpacks during the build phase, one for each dependency.

What is a buildpack package?

A buildpack package refers to the process of packaging buildpacks for distribution as OCI images or OCI-compatible tar files.

What is a component buildpack?

A component buildpack is a buildpack containing /bin/detect and /bin/build executables and that implements the Buildpack Interface.

What is a composite buildpack?

A composite buildpack, also sometimes called a “meta buildpack”, is a buildpack that does not contain any ./bin/detect or ./bin/build binaries, but instead references other buildpacks in its buildpack.toml via the [[order]] array. This is useful for composing more complex detection strategies.

What is an image extension?

An image extension is software that generates Dockerfiles that can be used to extend base images for buildpacks builds.

What is the build plan?

A build plan is a toml file that is the output of the detect phase, in which each component buildpack or image extension may express the dependencies it requires and the dependencies it provides.