Skip to content

Commit

Permalink
Use heroku/builder:24 in README usage instructions (#965)
Browse files Browse the repository at this point in the history
For multi-arch support + now that Heroku-24 is the default stack instead of Heroku-22.
  • Loading branch information
edmorley authored Nov 28, 2024
1 parent 44ebc7a commit 7da2d23
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ To build a Node.js application codebase into a production image:

```bash
$ cd ~/workdir/sample-nodejs-app
$ pack build sample-app --builder heroku/builder:22
$ pack build sample-app --builder heroku/builder:24
```

Then run the image:
Expand Down
2 changes: 1 addition & 1 deletion buildpacks/nodejs-corepack/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ For most users, it's simplest to build an app using [`pack`](https://buildpacks.
and Heroku's [builder](https://github.com/heroku/cnb-builder-images), which includes this buildpack.

```
pack build example-app-image --builder heroku/builder:22 --path /my/example-app
pack build example-app-image --builder heroku/builder:24 --path /my/example-app
```

For users desiring more control, this buildpack can be used as part of a
Expand Down
4 changes: 2 additions & 2 deletions buildpacks/nodejs-pnpm-install/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@ command from Cloud Native Buildpacks using
pack build example-app-image --buildpack heroku/nodejs-engine --buildpack heroku/nodejs-corepack --buildpack heroku/nodejs-pnpm-install --path /some/example-app
```

Alternatively, use the `heroku/builder:22` builder, which includes the above
Alternatively, use the `heroku/builder:24` builder, which includes the above
buildpacks:

```
pack build example-app-image --builder heroku/builder:22 --path /some/example-app
pack build example-app-image --builder heroku/builder:24 --path /some/example-app
```

## Build Plan
Expand Down

0 comments on commit 7da2d23

Please sign in to comment.