Skip to content

Commit

Permalink
Update builder
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasVitale committed Jan 16, 2023
1 parent 65b3f5c commit e327626
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,12 @@ tasks.named('jar') {
}

tasks.named('bootBuildImage') {
// Multi-architecture builder based on Paketo.
// For more info: https://github.com/thomasvitale/paketo-arm64
builder = "ghcr.io/thomasvitale/builder:tiny"

if (System.getProperty( "os.arch" ).toLowerCase().startsWith('aarch')) {
// This builder is only for ARM64 systems.
// For more info: https://github.com/thomasvitale/paketo-arm64
builder = "ghcr.io/thomasvitale/builder-arm:tiny"
}

imageName = "band-service"
}

0 comments on commit e327626

Please sign in to comment.