mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-07 14:04:10 +03:00
This update is in order to make the synaptics SL-series NPU detector more general. - Fix detector `os` module not import bug - Update detector type `synap1680` to `synaptics` - Update document description `SL1680` to `Synaptics` only - Update docker build content `synap1680` to `synaptics`
28 lines
523 B
HCL
28 lines
523 B
HCL
target wheels {
|
|
dockerfile = "docker/main/Dockerfile"
|
|
platforms = ["linux/arm64"]
|
|
target = "wheels"
|
|
}
|
|
|
|
target deps {
|
|
dockerfile = "docker/main/Dockerfile"
|
|
platforms = ["linux/arm64"]
|
|
target = "deps"
|
|
}
|
|
|
|
target rootfs {
|
|
dockerfile = "docker/main/Dockerfile"
|
|
platforms = ["linux/arm64"]
|
|
target = "rootfs"
|
|
}
|
|
|
|
target synaptics {
|
|
dockerfile = "docker/synaptics/Dockerfile"
|
|
contexts = {
|
|
wheels = "target:wheels",
|
|
deps = "target:deps",
|
|
rootfs = "target:rootfs"
|
|
}
|
|
platforms = ["linux/arm64"]
|
|
}
|