Skip to content

Commit

Permalink
Merge pull request #221 from anthonydahanne/dualarch-experiment
Browse files Browse the repository at this point in the history
Build multi arch binaries and add targets
  • Loading branch information
dmikusa authored Mar 27, 2024
2 parents 311f629 + 8edead3 commit e87c882
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,17 @@ api = "0.7"
type = "Apache-2.0"
uri = "https://github.com/paketo-buildpacks/procfile/blob/main/LICENSE"


[[targets]]
os = "linux"
arch = "amd64"

[[targets]]
os = "linux"
arch = "arm64"

[metadata]
include-files = ["LICENSE", "NOTICE", "README.md", "bin/build", "bin/detect", "bin/main", "bin/build.exe", "bin/detect.exe", "bin/main.exe", "buildpack.toml"]
include-files = ["LICENSE", "NOTICE", "README.md", "linux/amd64/bin/build", "linux/amd64/bin/detect", "linux/amd64/bin/main", "linux/arm64/bin/build", "linux/arm64/bin/detect", "linux/arm64/bin/main", "buildpack.toml"]
pre-package = "scripts/build.sh"

[[stacks]]
Expand Down

0 comments on commit e87c882

Please sign in to comment.