mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-11 13:45:25 +03:00
Make rpi docker image multi-arch during CI
This commit is contained in:
parent
65626349d8
commit
3f9e5b1d42
@ -1,12 +1,12 @@
|
|||||||
target deps {
|
target deps {
|
||||||
dockerfile = "docker/main/Dockerfile"
|
dockerfile = "docker/main/Dockerfile"
|
||||||
platforms = ["linux/arm64"]
|
platforms = ["linux/arm64","linux/arm/v7"]
|
||||||
target = "deps"
|
target = "deps"
|
||||||
}
|
}
|
||||||
|
|
||||||
target rootfs {
|
target rootfs {
|
||||||
dockerfile = "docker/main/Dockerfile"
|
dockerfile = "docker/main/Dockerfile"
|
||||||
platforms = ["linux/arm64"]
|
platforms = ["linux/arm64","linux/arm/v7"]
|
||||||
target = "rootfs"
|
target = "rootfs"
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -16,5 +16,5 @@ target rpi {
|
|||||||
deps = "target:deps",
|
deps = "target:deps",
|
||||||
rootfs = "target:rootfs"
|
rootfs = "target:rootfs"
|
||||||
}
|
}
|
||||||
platforms = ["linux/arm64"]
|
platforms = ["linux/arm64","linux/arm/v7"]
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue
Block a user