2023-07-18 00:19:13 +03:00
|
|
|
target deps {
|
2023-07-17 23:03:41 +03:00
|
|
|
dockerfile = "docker/main/Dockerfile"
|
|
|
|
|
platforms = ["linux/amd64"]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
target rootfs {
|
|
|
|
|
dockerfile = "docker/main/Dockerfile"
|
|
|
|
|
platforms = ["linux/amd64"]
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-18 00:19:13 +03:00
|
|
|
target wheels {
|
|
|
|
|
dockerfile = "docker/main/Dockerfile"
|
|
|
|
|
platforms = ["linux/amd64"]
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-18 15:08:43 +03:00
|
|
|
target devcontainer {
|
|
|
|
|
dockerfile = "docker/main/Dockerfile"
|
|
|
|
|
platforms = ["linux/amd64"]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
target tensorrt {
|
|
|
|
|
dockerfile = "docker/tensorrt/Dockerfile"
|
|
|
|
|
context = "."
|
|
|
|
|
contexts = {
|
|
|
|
|
deps = "target:deps",
|
|
|
|
|
rootfs = "target:rootfs"
|
|
|
|
|
wheels = "target:wheels"
|
|
|
|
|
}
|
|
|
|
|
platforms = ["linux/amd64"]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
target devcontainer-trt {
|
2023-07-17 23:03:41 +03:00
|
|
|
dockerfile = "docker/tensorrt/Dockerfile"
|
2023-07-18 00:19:13 +03:00
|
|
|
context = "."
|
2023-07-17 23:03:41 +03:00
|
|
|
contexts = {
|
|
|
|
|
deps = "target:deps",
|
|
|
|
|
rootfs = "target:rootfs"
|
2023-07-18 00:19:13 +03:00
|
|
|
wheels = "target:wheels"
|
2023-07-18 15:08:43 +03:00
|
|
|
devcontainer = "target:devcontainer
|
2023-07-17 23:03:41 +03:00
|
|
|
}
|
|
|
|
|
platforms = ["linux/amd64"]
|
|
|
|
|
}
|