Skip to content

Commit

Permalink
Merge pull request #387 from loewenstein/extensions-buildpack
Browse files Browse the repository at this point in the history
Remove `experimental` mark on extensions
  • Loading branch information
natalieparellano authored Mar 1, 2024
2 parents 7eb38d1 + 88050e7 commit cc0925b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion buildpack.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ A **component buildpack** is a buildpack containing `/bin/detect` and `/bin/buil

A **composite buildpack** is a buildpack containing an order definition in `buildpack.toml`. Composite buildpacks do not contain `/bin/detect` or `/bin/build` executables. They MUST be [resolvable](#order-resolution) into a collection of component buildpacks.

An **image extension** (**experimental**) is a directory containing an `extension.toml`. Extensions generate Dockerfiles that can be used to define the runtime base image, prior to buildpack execution. Extensions implement the [Image Extension Interface](image-extension.md). Extensions are always "component": their `extension.toml` cannot contain an order definition.
An **image extension** is a directory containing an `extension.toml`. Extensions generate Dockerfiles that can be used to define the runtime base image, prior to buildpack execution. Extensions implement the [Image Extension Interface](image-extension.md). Extensions are always "component": their `extension.toml` cannot contain an order definition.

**Resolving an order** is the process by which an order (which may contain image extensions, component buildpacks, or composite buildpacks) is evaluated together with application source code to produce an optional group of image extensions and a required group of component buildpacks that can be used to build the application. This process is known as **detection**. During detection, the `/bin/detect` executable for each image extension (if present) and the `/bin/detect` executable for each component buildpack is invoked.

Expand Down
2 changes: 1 addition & 1 deletion image_extension.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Image Extension Interface Specification (**experimental**)
# Image Extension Interface Specification

This document specifies the interface between a lifecycle program and one or more image extensions.

Expand Down

0 comments on commit cc0925b

Please sign in to comment.