2024-11-02 13:13:28 +01:00
|
|
|
target wget {
|
|
|
|
dockerfile = "docker/main/Dockerfile"
|
|
|
|
platforms = ["linux/arm64","linux/amd64"]
|
|
|
|
target = "wget"
|
|
|
|
}
|
|
|
|
|
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 = {
|
2024-11-02 13:13:28 +01:00
|
|
|
wget = "target:wget"
|
2024-07-14 19:17:02 +02:00
|
|
|
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
|
|
|
}
|