diff --git a/docs/for-buildpack-authors/tutorials/basic-buildpack/02_building-blocks-cnb/index.html b/docs/for-buildpack-authors/tutorials/basic-buildpack/02_building-blocks-cnb/index.html index 8931f09e9..a2518d413 100644 --- a/docs/for-buildpack-authors/tutorials/basic-buildpack/02_building-blocks-cnb/index.html +++ b/docs/for-buildpack-authors/tutorials/basic-buildpack/02_building-blocks-cnb/index.html @@ -922,7 +922,7 @@

Using the Pack CLI

--api 0.10 \ --path node-js-buildpack \ --version 0.0.1 \ - --stacks io.buildpacks.samples.stacks.noble + --targets "linux/amd64"

This command will create node-js-buildpack directory which contains buildpack.toml, bin/build, bin/detect files.

Additional Parameters

@@ -930,7 +930,6 @@

Additional Parameters

  • -a, --api Buildpack API compatibility of the generated buildpack
  • -h, --help Help for ’new'
  • --path the location on the filesystem to generate the artifacts
  • -
  • --stacks Stacks (deprecated) the buildpack will work with
  • -V, --version the version of the buildpack in buildpack.toml
  • buildpack.toml

    @@ -947,10 +946,7 @@

    buildpack.toml

    # Targets the buildpack will work with [[targets]] os = "linux" - -# Stacks (deprecated) the buildpack will work with -[[stacks]] - id = "io.buildpacks.samples.stacks.noble" +architecture = "amd64"

    The buildpack ID is the way you will reference the buildpack when you create buildpack groups, builders, etc. Targets identifies the kind of build and run base images the buildpack will work with. The stack ID (deprecated) uniquely identifies a build and run image configuration the buildpack will work with. This example can be run on Ubuntu Noble.

    @@ -989,9 +985,9 @@

    Using your buildpack with pack
    ===> DETECTING
     ...
    -err:  examples/node-js@0.0.1 (1)
    -ERROR: No buildpack groups passed detection.
    -ERROR: failed to detect: buildpack(s) failed with err
    +[detector] err:  examples/node-js@0.0.1 (1)
    +[detector] ERROR: No buildpack groups passed detection.
    +[detector] ERROR: failed to detect: buildpack(s) failed with err
     ERROR: failed to build: executing lifecycle: failed with status code: 21
     

    diff --git a/docs/for-buildpack-authors/tutorials/basic-buildpack/04_build-app/index.html b/docs/for-buildpack-authors/tutorials/basic-buildpack/04_build-app/index.html index e9691d115..4e8a6d47b 100644 --- a/docs/for-buildpack-authors/tutorials/basic-buildpack/04_build-app/index.html +++ b/docs/for-buildpack-authors/tutorials/basic-buildpack/04_build-app/index.html @@ -965,8 +965,8 @@

    Running the Build

    ... ===> RESTORING ===> BUILDING ----> NodeJS Buildpack ----> Downloading and extracting NodeJS +[builder] ---> NodeJS Buildpack +[builder] ---> Downloading and extracting NodeJS ... ===> EXPORTING ... diff --git a/docs/for-buildpack-authors/tutorials/basic-buildpack/06_caching/index.html b/docs/for-buildpack-authors/tutorials/basic-buildpack/06_caching/index.html index f1970ef48..c2786a3be 100644 --- a/docs/for-buildpack-authors/tutorials/basic-buildpack/06_caching/index.html +++ b/docs/for-buildpack-authors/tutorials/basic-buildpack/06_caching/index.html @@ -1007,8 +1007,8 @@

    Cache the runtime layer

    ===> BUILDING
     ...
    ----> NodeJS Buildpack
    ------> Reusing NodeJS
    +[builder] ---> NodeJS Buildpack
    +[builder] -----> Reusing NodeJS
     

    Next, let’s see how buildpack users may be able to provide configuration to the buildpack.


    diff --git a/docs/for-buildpack-authors/tutorials/basic-buildpack/07_make-buildpack-configurable/index.html b/docs/for-buildpack-authors/tutorials/basic-buildpack/07_make-buildpack-configurable/index.html index bbffffcd5..1a40d438b 100644 --- a/docs/for-buildpack-authors/tutorials/basic-buildpack/07_make-buildpack-configurable/index.html +++ b/docs/for-buildpack-authors/tutorials/basic-buildpack/07_make-buildpack-configurable/index.html @@ -990,8 +990,8 @@

    Select NodeJS version

    ===> BUILDING
     ...
    ----> NodeJS Buildpack
    ------> Downloading and extracting NodeJS 18.18.1
    +[builder] ---> NodeJS Buildpack
    +[builder] -----> Downloading and extracting NodeJS 18.18.1
     

    Going further

    Now that you’ve finished your buildpack, how about extending it? Try: