| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 | FROM ubuntu:18.04LABEL maintainer "blakeb@blakeshome.com"ENV DEBIAN_FRONTEND=noninteractive# Install packages for apt repoRUN apt -qq update && apt -qq install --no-install-recommends -y \    software-properties-common \    # apt-transport-https ca-certificates \    build-essential \    gnupg wget \    # libcap-dev \    && add-apt-repository ppa:deadsnakes/ppa -y \    && apt -qq install --no-install-recommends -y \        python3.7 \        python3.7-dev \        python3-pip \        ffmpeg \        # VAAPI drivers for Intel hardware accel        libva-drm2 libva2 i965-va-driver vainfo \    && python3.7 -m pip install -U wheel setuptools \    && python3.7 -m pip install -U \        opencv-python-headless \        # python-prctl \        numpy \        imutils \        scipy \    && python3.7 -m pip install -U \        SharedArray \        # Flask \        # paho-mqtt \        # PyYAML \        # matplotlib \    && echo "deb https://packages.cloud.google.com/apt coral-edgetpu-stable main" > /etc/apt/sources.list.d/coral-edgetpu.list \    && wget -q -O - https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add - \    && apt -qq update \    && echo "libedgetpu1-max libedgetpu/accepted-eula boolean true" | debconf-set-selections \    && apt -qq install --no-install-recommends -y \        libedgetpu1-max \    ## Tensorflow lite (python 3.7 only)    && wget -q https://dl.google.com/coral/python/tflite_runtime-1.14.0-cp37-cp37m-linux_x86_64.whl \    && python3.7 -m pip install tflite_runtime-1.14.0-cp37-cp37m-linux_x86_64.whl \    && rm tflite_runtime-1.14.0-cp37-cp37m-linux_x86_64.whl \    && rm -rf /var/lib/apt/lists/* \    && (apt-get autoremove -y; apt-get autoclean -y)# # symlink the model and labels# RUN wget -q https://github.com/google-coral/edgetpu/raw/master/test_data/mobilenet_ssd_v2_coco_quant_postprocess_edgetpu.tflite -O mobilenet_ssd_v2_coco_quant_postprocess_edgetpu.tflite --trust-server-names# RUN wget -q https://dl.google.com/coral/canned_models/coco_labels.txt -O coco_labels.txt --trust-server-names# RUN ln -s mobilenet_ssd_v2_coco_quant_postprocess_edgetpu.tflite /frozen_inference_graph.pb# RUN ln -s /coco_labels.txt /label_map.pbtextWORKDIR /opt/frigate/ADD frigate frigate/COPY detect_objects.py .COPY benchmark.py .CMD ["python3", "-u", "benchmark.py"]
 |