Skip to content

Commit f2ba5e5

Browse files
committed
edits
1 parent fa8327f commit f2ba5e5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/spring-apps/migration/migrate-to-azure-container-apps-build-buildpacks.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,23 @@ ms.custom: devx-track-java, devx-track-extended-java
1616

1717
**This article applies to:** ✅ Basic/Standard ✅ Enterprise
1818

19-
> [!NOTE]
20-
> This article previously recommended using the [Paketo Java Azure Composite Buildpack](https://github.com/paketo-buildpacks/java-azure), which is discontinued. We've updated the example to use the necessary individual components of the composite buildpack. For a list of all individual components included in the composite buildpack, please refer to [buildpack.toml](https://github.com/paketo-buildpacks/java-azure/blob/main/buildpack.toml). For more information about the discontinuation of the composite buildpack, see [Paketo Buildpacks Sunsets Java Azure Composite Buildpack](https://blog.paketo.io/posts/paketo-java-azure-sunsets/).
21-
2219
This article describes how to build a container image by using Paketo Buildpacks.
2320

2421
Azure Spring Apps service supports building an image from source code without using Dockerfiles. It isn't limited to Java applications but extends to other programming languages and even static web content. In the Standard plan, the service uses open-source [Paketo Buildpacks](https://paketo.io/), while in Enterprise plan, it uses VMware Tanzu Buildpacks. If Tanzu Buildpacks are unavailable or there's no online service for using Paketo, you can switch to local Paketo Buildpacks to build images. Then deploy them to Azure Container Registry or other Docker registries.
2522

2623
This article shows you how to create a builder with a TOML file, and then build your source code or artifact file with the builder. For more information, see [builder.toml](https://buildpacks.io/docs/reference/config/builder-config/). To understand the build image, run image, and stack, see [What are base images](https://buildpacks.io/docs/for-app-developers/concepts/base-images/).
2724

25+
> [!NOTE]
26+
> This article previously recommended using the [Paketo Java Azure Composite Buildpack](https://github.com/paketo-buildpacks/java-azure), which is discontinued. We've updated the example to use the necessary individual components of the composite buildpack. For a list of all individual components included in the composite buildpack, see [buildpack.toml](https://github.com/paketo-buildpacks/java-azure/blob/main/buildpack.toml). For more information about the discontinuation of the composite buildpack, see [Paketo Buildpacks Sunsets Java Azure Composite Buildpack](https://blog.paketo.io/posts/paketo-java-azure-sunsets/).
27+
2828
## Prerequisites
2929

3030
- [Docker](https://docs.docker.com/get-docker/)
3131
- [Pack CLI](https://buildpacks.io/docs/for-platform-operators/how-to/integrate-ci/pack/)
3232

3333
## Standard plan
3434

35-
The Azure Spring Apps Standard plan comes with a built-in builder, which you can't customize. To replace this builder, you need to create a TOML file for your own builder. Below is an example TOML file that can be customized to build a Java Spring Boot app with Application Insights. Please adjust the TOML file based on your app's requirements.
35+
The Azure Spring Apps Standard plan comes with a built-in builder, which you can't customize. To replace this builder, you need to create a TOML file for your own builder. The following TOML file is an example that you can customize to build a Java Spring Boot app with Application Insights. Adjust the TOML file based on your app's requirements.
3636

3737
```toml
3838
# filename: standard-builder.toml
@@ -205,7 +205,7 @@ The following table shows the Paketo Buildpack equivalents to the buildpacks use
205205
| `tanzu-buildpacks/python` | [paketo-buildpacks/python](https://github.com/paketo-buildpacks/python) |
206206
| `tanzu-buildpacks/web-servers` | [paketo-buildpacks/web-servers](https://github.com/paketo-buildpacks/web-servers) |
207207

208-
To replace the builder in the Enterprise plan, you need to create a TOML file for your own builder. Below is an example TOML file that can be customized. With this TOML file, you can create a similar builder on your local machine. Please adjust the TOML file based on your app's requirements.
208+
To replace the builder in the Enterprise plan, you need to create a TOML file for your own builder. The following TOML file is an example that you can be customize. With this TOML file, you can create a similar builder on your local machine. Adjust the TOML file based on your app's requirements.
209209

210210
```toml
211211
# filename: enterprise-builder.toml

0 commit comments

Comments
 (0)