https://github.com/thomasvitale/paketo-arm64
Information about Paketo Buildpacks support for ARM64
https://github.com/thomasvitale/paketo-arm64
Last synced: 7 months ago
JSON representation
Information about Paketo Buildpacks support for ARM64
- Host: GitHub
- URL: https://github.com/thomasvitale/paketo-arm64
- Owner: ThomasVitale
- License: apache-2.0
- Created: 2023-01-16T20:42:45.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-16T20:47:39.000Z (over 2 years ago)
- Last Synced: 2025-02-07T08:49:16.345Z (8 months ago)
- Size: 6.84 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Paketo Buildpacks - ARM64
The builder image provided by Paketo Buildpacks doesn't currently support ARM64 architectures.
Instead, you can use [ghcr.io/thomasvitale/java-builder-arm64](https://github.com/users/ThomasVitale/packages/container/package/java-builder-arm64) based on the [work](https://dashaun.com/posts/teamwork-makes-the-dream-work-for-multiarch-builder/) done by Dashaun Carter.In a Spring Boot project, you can configure Buildpacks in your `build.gradle` file as follows:
```shell
tasks.named('bootBuildImage') {
if (System.getProperty( "os.arch" ).toLowerCase().startsWith('aarch')) {
builder = "ghcr.io/thomasvitale/java-builder-arm64"
}
builder = "paketobuildpacks/builder:tiny"
}
```