mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-07 05:54: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`
16 lines
547 B
Makefile
16 lines
547 B
Makefile
BOARDS += synaptics
|
|
|
|
local-synaptics: version
|
|
docker buildx bake --file=docker/synaptics/synaptics.hcl synaptics \
|
|
--set synaptics.tags=frigate:latest-synaptics \
|
|
--load
|
|
|
|
build-synaptics: version
|
|
docker buildx bake --file=docker/synaptics/synaptics.hcl synaptics \
|
|
--set synaptics.tags=$(IMAGE_REPO):${GITHUB_REF_NAME}-$(COMMIT_HASH)-synaptics
|
|
|
|
push-synaptics: build-synaptics
|
|
docker buildx bake --file=docker/synaptics/synaptics.hcl synaptics \
|
|
--set synaptics.tags=$(IMAGE_REPO):${GITHUB_REF_NAME}-$(COMMIT_HASH)-synaptics \
|
|
--push
|