forked from cartesi/rollups-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.hcl
More file actions
43 lines (37 loc) · 726 Bytes
/
base.hcl
File metadata and controls
43 lines (37 loc) · 726 Bytes
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
group "default" {
targets = ["dapp", "server", "console"]
}
# crossenv toolchain for python dapps
target "toolchain-python" {
context = "../docker"
target = "toolchain-python"
tags = ["cartesi/toolchain-python"]
}
target "fs" {
context = "../docker"
target = "dapp-fs-build"
contexts = {
dapp-build = "target:dapp"
}
}
target "server" {
context = "../docker"
target = "machine-server"
contexts = {
dapp-build = "target:dapp"
}
}
target "console" {
context = "../docker"
target = "machine-console"
contexts = {
dapp-build = "target:dapp"
}
}
target "machine" {
context = "../docker"
target = "machine-standalone"
contexts = {
dapp-build = "target:dapp"
}
}