2024-07-14 19:17:02 +02:00
|
|
|
target wheels {
|
|
|
|
dockerfile = "docker/main/Dockerfile"
|
2024-08-09 23:53:33 +02:00
|
|
|
platforms = ["linux/arm64","linux/amd64"]
|
2024-07-14 19:17:02 +02:00
|
|
|
target = "wheels"
|
|
|
|
}
|
|
|
|
|
|
|
|
target deps {
|
|
|
|
dockerfile = "docker/main/Dockerfile"
|
2024-08-09 23:53:33 +02:00
|
|
|
platforms = ["linux/arm64","linux/amd64"]
|
2024-07-14 19:17:02 +02:00
|
|
|
target = "deps"
|
|
|
|
}
|
|
|
|
|
|
|
|
target rootfs {
|
|
|
|
dockerfile = "docker/main/Dockerfile"
|
2024-08-09 23:53:33 +02:00
|
|
|
platforms = ["linux/arm64","linux/amd64"]
|
2024-07-14 19:17:02 +02:00
|
|
|
target = "rootfs"
|
|
|
|
}
|
|
|
|
|
|
|
|
target h8l {
|
|
|
|
dockerfile = "docker/hailo8l/Dockerfile"
|
|
|
|
contexts = {
|
|
|
|
wheels = "target:wheels"
|
|
|
|
deps = "target:deps"
|
|
|
|
rootfs = "target:rootfs"
|
|
|
|
}
|
2024-08-09 23:53:33 +02:00
|
|
|
platforms = ["linux/arm64","linux/amd64"]
|
2024-07-14 19:17:02 +02:00
|
|
|
}
|