Skip to content

Commit 8e97160

Browse files
authored
Merge pull request #23154 from sap-contributions/upgrade-paketo-builder
Upgrade paketo builder
2 parents f4c82c8 + b49fafd commit 8e97160

4 files changed

Lines changed: 6 additions & 9 deletions

File tree

tutorials/btp-app-kyma-deploy-application/btp-app-kyma-deploy-application.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ CONTAINER_REGISTRY=<your-container-registry>
111111
```Shell/Bash
112112
pack build $CONTAINER_REGISTRY/cpapp-srv --path gen/srv \
113113
--buildpack gcr.io/paketo-buildpacks/nodejs \
114-
--builder paketobuildpacks/builder:base \
114+
--builder paketobuildpacks/builder-jammy-base \
115115
--env BP_NODE_RUN_SCRIPTS=""
116116
```
117117
@@ -131,7 +131,7 @@ CONTAINER_REGISTRY=<your-container-registry>
131131
```Shell/Bash
132132
pack build $CONTAINER_REGISTRY/cpapp-hana-deployer --path gen/db \
133133
--buildpack gcr.io/paketo-buildpacks/nodejs \
134-
--builder paketobuildpacks/builder:base \
134+
--builder paketobuildpacks/builder-jammy-base \
135135
--env BP_NODE_RUN_SCRIPTS=""
136136
```
137137

tutorials/btp-app-kyma-work-zone-setup/btp-app-kyma-work-zone-setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ The name of your SAP Cloud service (`cpapp` in this case) should be unique withi
329329
--env BP_NODE_RUN_SCRIPTS=build \
330330
--path app \
331331
--buildpack gcr.io/paketo-buildpacks/nodejs \
332-
--builder paketobuildpacks/builder:base
332+
--builder paketobuildpacks/builder-jammy-base
333333
```
334334

335335
The parameter `--env BP_NODE_RUN_SCRIPTS=build` triggers the build script in the `app/package.json`, which runs the UI5 build for the SAP Fiori applications as it is defined in the `app/build.sh` file. The build result appears in the docker image only. It's not on your file system.

tutorials/deploy-multitenant-app-kyma/deploy-multitenant-app-kyma.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,12 @@ brew install buildpacks/tap/pack
6868
<p> </p>
6969
In the directory `kyma-multitenant-approuter`, build the image for the approuter app from source, for example:
7070
```Shell / Bash
71-
pack build multitenant-approuter --builder paketobuildpacks/builder:full
72-
docker tag multitenant-approuter <docker-hub-account>/multitenant-approuter:v1
71+
pack build <docker-hub-account>/multitenant-approuter:v1 --builder paketobuildpacks/builder-jammy-base
7372
```
7473

7574
In the directory `kyma-multitenant-node`, build the image for the approuter app from source, for example:
7675
```Shell / Bash
77-
pack build multitenant-kyma-backend --builder paketobuildpacks/builder:full
78-
docker tag multitenant-kyma-backend <docker-hub-account>/multitenant-kyma-backend:v1
76+
pack build <docker-hub-account>/multitenant-kyma-backend:v1 --builder paketobuildpacks/builder-jammy-base
7977
```
8078

8179

tutorials/deploy-nodejs-application-kyma/deploy-nodejs-application-kyma.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,7 @@ As you can only create one private repository in a free Docker hub account, Dock
6262
**2.** In the directory `kyma-multitenant-node`, build the image for the approuter app from source, for example:
6363

6464
```Shell / Bash
65-
pack build multitenant-kyma-backend --builder paketobuildpacks/builder:full
66-
docker tag multitenant-kyma-backend <docker-hub-account>/multitenant-kyma-backend:v1
65+
pack build <docker-hub-account>/multitenant-kyma-backend:v1 --builder paketobuildpacks/builder-jammy-base
6766
```
6867

6968

0 commit comments

Comments
 (0)