mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-07 03:35:26 +03:00
27 lines
518 B
HCL
27 lines
518 B
HCL
target wget {
|
|
dockerfile = "docker/main/Dockerfile"
|
|
platforms = ["linux/arm64"]
|
|
target = "wget"
|
|
}
|
|
|
|
target wheels {
|
|
dockerfile = "docker/main/Dockerfile"
|
|
platforms = ["linux/arm64"]
|
|
target = "wheels"
|
|
}
|
|
|
|
target frigate {
|
|
dockerfile = "docker/main/Dockerfile"
|
|
platforms = ["linux/arm64"]
|
|
target = "frigate"
|
|
}
|
|
|
|
target rk {
|
|
dockerfile = "docker/rockchip/Dockerfile"
|
|
contexts = {
|
|
wget = "target:wget",
|
|
wheels = "target:wheels",
|
|
frigate = "target:frigate"
|
|
}
|
|
platforms = ["linux/arm64"]
|
|
} |