Skip to content

Commit 90f73a7

Browse files
authored
Merge pull request cds-hooks#606 from dlion/fix-link-image-extension
Fix link to the image extension spec
2 parents 5f6b59d + 4096471 commit 90f73a7

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 @@ vim --help
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 @@ vim --help
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 `vim` extension in the next step.

0 commit comments

Comments
 (0)