forked from tier4/scenario_simulator_v2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-bake.hcl
More file actions
35 lines (31 loc) · 762 Bytes
/
docker-bake.hcl
File metadata and controls
35 lines (31 loc) · 762 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
group "default" {
targets = ["humble"]
}
target "base_amd64" {
target = "build-stage"
dockerfile = "Dockerfile"
platforms = ["linux/amd64"]
}
target "base_arm64" {
target = "build-stage"
dockerfile = "Dockerfile.arm64"
platforms = ["linux/arm64/v8"]
}
target "humble" {
inherits = [base]
name = "humble_${base}"
tags = ["ghcr.io/tier4/scenario_simulator_v2:humble"]
args = {"ROS_DISTRO" : "humble"}
group = ["humble"]
matrix = {
base = ["base_amd64", "base_arm64"]
}
}
target "traffic_simulator" {
name = "traffic_simulator_humble"
tags = ["ghcr.io/tier4/scenario_simulator_v2:traffic_simulator_humble"]
args = {"ROS_DISTRO" : "humble"}
group = ["humble"]
matrix = {}
dockerfile = "Dockerfile.traffic_simulator"
}