Update Dockerfile

under directory /opt/frigate/ 
'make' command fails around Dockerfile OpenVino build 
this fix worked for me
This commit is contained in:
KobiONeil 2025-04-09 17:35:10 -06:00 committed by GitHub
parent 389c707ad2
commit b8d0bbc9ec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -85,7 +85,7 @@ RUN apt-get -qq update \
RUN --mount=type=bind,source=docker/main/build_ov_model.py,target=/build_ov_model.py \ RUN --mount=type=bind,source=docker/main/build_ov_model.py,target=/build_ov_model.py \
mkdir /models && cd /models \ mkdir /models && cd /models \
&& wget http://download.tensorflow.org/models/object_detection/ssdlite_mobilenet_v2_coco_2018_05_09.tar.gz \ && wget http://download.tensorflow.org/models/object_detection/ssdlite_mobilenet_v2_coco_2018_05_09.tar.gz \
&& tar -xvf ssdlite_mobilenet_v2_coco_2018_05_09.tar.gz \ && tar -xvf ssdlite_mobilenet_v2_coco_2018_05_09.tar.gz --no-same-owner \
&& python3 /build_ov_model.py && python3 /build_ov_model.py
#### ####