-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-bake.manylinux.hcl
More file actions
51 lines (46 loc) · 1.25 KB
/
docker-bake.manylinux.hcl
File metadata and controls
51 lines (46 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
target "base" {
dockerfile = "Dockerfile.manylinux_2_28-base"
context = "."
}
target "plugins-base" {
dockerfile = "Dockerfile.manylinux_2_28-plugins-deps"
context = "."
}
target "x86_64" {
inherits = ["base"]
platforms = ["linux/amd64"]
tags = ["wasmedge/wasmedge:manylinux_2_28_x86_64"]
args = {
LLVM_TARGETS = "X86;BPF",
LLVM_TRIPLE = "x86_64-pc-linux-gnu"
}
}
target "x86_64-plugins" {
inherits = ["plugins-base"]
platforms = ["linux/amd64"]
tags = ["wasmedge/wasmedge:manylinux_2_28_x86_64-plugins-deps"]
contexts = {
"wasmedge/wasmedge:manylinux_2_28_x86_64"= "target:x86_64"
}
}
target "aarch64" {
inherits = ["base"]
platforms = ["linux/arm64"]
tags = ["wasmedge/wasmedge:manylinux_2_28_aarch64"]
args = {
BASE_IMAGE = "quay.io/pypa/manylinux_2_28_aarch64",
LLVM_TARGETS = "AArch64;BPF",
LLVM_TRIPLE = "aarch64-redhat-linux-gnu"
}
}
target "aarch64-plugins" {
inherits = ["plugins-base"]
platforms = ["linux/arm64"]
tags = ["wasmedge/wasmedge:manylinux_2_28_aarch64-plugins-deps"]
contexts = {
"wasmedge/wasmedge:manylinux_2_28_aarch64" = "target:aarch64"
}
args = {
BASE_IMAGE = "wasmedge/wasmedge:manylinux_2_28_aarch64"
}
}