Skip to content

Commit

Permalink
Merge pull request #606 from dlion/fix-link-image-extension
Browse files Browse the repository at this point in the history
Fix link to the image extension spec
  • Loading branch information
AidanDelaney authored Aug 9, 2023
2 parents 5f6b59d + 4096471 commit 90f73a7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ vim --help

* The `extension.toml` describes the extension, containing information such as its name, ID, and version, as well as the
buildpack API that it implements. Though extensions are not buildpacks, they are expected to conform to the buildpack
API except where noted. Consult the [spec](https://github.com/buildpacks/spec/blob/buildpack/main/image_extension.md)
API except where noted. Consult the [spec](https://github.com/buildpacks/spec/blob/main/image_extension.md)
for further details.
* `./bin/detect` is invoked during the `detect` phase. It analyzes application source code to determine if the extension
is needed and contributes [build plan](/docs/reference/spec/buildpack-api/#build-plan) entries (much like a
Expand All @@ -36,12 +36,12 @@ vim --help
* `./bin/generate` is invoked during the `generate` phase (a new lifecycle phase that happens after `detect`). It
outputs either or both of `build.Dockerfile` or `run.Dockerfile` for extending the builder or run image, respectively.
* Only a limited set of Dockerfile instructions is supported - consult
the [spec](https://github.com/buildpacks/spec/blob/buildpack/main/image_extension.md)
the [spec](https://github.com/buildpacks/spec/blob/main/image_extension.md)
for further details.
* In the [initial implementation](/docs/features/dockerfiles#phased-approach), `run.Dockerfile` instructions are
limited to a single `FROM` instruction (effectively, it is only possible to switch the run-time base image to a
pre-created image i.e., no dynamic image modification is allowed). Consult
the [spec](https://github.com/buildpacks/spec/blob/buildpack/main/image_extension.md)
the [spec](https://github.com/buildpacks/spec/blob/main/image_extension.md)
for further details.

We'll take a closer look at the executables for the `vim` extension in the next step.
Expand Down

0 comments on commit 90f73a7

Please sign in to comment.