Skip to content

Commit 4d0434e

Browse files
author
Natalie Arellano
committed
Merge branch 'main' into runext/demo
2 parents 5a96a9e + 90f73a7 commit 4d0434e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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 @@ You should see something akin to the following:
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 @@ You should see something akin to the following:
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.

content/docs/operator-guide/create-a-stack.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Before we get started, make sure you've got the following installed:
1616

1717
## Creating a custom stack
1818

19-
In this tutorial we will create a sample stack based on `Ubuntu Bionic`. To create a custom stack, we need to create customized build and run images. Let's see how we can do so!
19+
In this tutorial we will create a sample stack based on `Ubuntu Jammy Jellyfish`. To create a custom stack, we need to create customized build and run images. Let's see how we can do so!
2020

2121

2222
### Create a common base image

0 commit comments

Comments
 (0)