Skip to content

Commit 96cc997

Browse files
author
Domenico Luciani
committed
Fix link to the image extension spec
Signed-off-by: Domenico Luciani <[email protected]>
1 parent ddfcca0 commit 96cc997

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/docs/extension-guide/create-extension/building-blocks-extension.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ tree $PWD/samples/extensions/tree
2727

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

4747
We'll take a closer look at the executables for the `tree` extension in the next step.

0 commit comments

Comments
 (0)