From 2d89044bd36af561d2c03e3a64f9812021471cbe Mon Sep 17 00:00:00 2001 From: Blake Blackshear Date: Mon, 28 Sep 2020 07:43:04 -0500 Subject: [PATCH] update dockerfiles for amd64 --- docker/{Dockerfile => Dockerfile.amd64} | 7 ++--- docker/Dockerfile.base | 37 +++++++------------------ 2 files changed, 13 insertions(+), 31 deletions(-) rename docker/{Dockerfile => Dockerfile.amd64} (81%) diff --git a/docker/Dockerfile b/docker/Dockerfile.amd64 similarity index 81% rename from docker/Dockerfile rename to docker/Dockerfile.amd64 index 334da8fa1..8d18288ad 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile.amd64 @@ -1,10 +1,9 @@ -FROM frigate.base +FROM frigate-base LABEL maintainer "blakeb@blakeshome.com" -ENV DEBIAN_FRONTEND=noninteractive # Install packages for apt repo -RUN apt -qq update \ - && apt -qq install --no-install-recommends -y \ +RUN apt-get -qq update \ + && apt-get -qq install --no-install-recommends -y \ ffmpeg \ # VAAPI drivers for Intel hardware accel libva-drm2 libva2 i965-va-driver vainfo \ diff --git a/docker/Dockerfile.base b/docker/Dockerfile.base index 75ba29da3..637b05446 100644 --- a/docker/Dockerfile.base +++ b/docker/Dockerfile.base @@ -1,41 +1,25 @@ +ARG ARCH=amd64 +FROM blakeblackshear/frigate-wheels:${ARCH} as wheels + FROM ubuntu:20.04 LABEL maintainer "blakeb@blakeshome.com" +COPY --from=wheels /wheels/. /wheels/ + ENV DEBIAN_FRONTEND=noninteractive # Install packages for apt repo -RUN apt -qq update && apt -qq install --no-install-recommends -y \ - software-properties-common \ - # apt-transport-https ca-certificates \ - build-essential \ +RUN apt-get -qq update && apt-get -qq install --no-install-recommends -y \ gnupg wget unzip tzdata \ - # libcap-dev \ - && add-apt-repository ppa:deadsnakes/ppa -y \ - && apt -qq install --no-install-recommends -y \ - python3.8 \ - python3.8-dev \ + && apt-get -qq install --no-install-recommends -y \ python3-pip \ - && python3.8 -m pip install -U pip \ - && python3.8 -m pip install -U wheel setuptools \ - && python3.8 -m pip install -U \ - opencv-python-headless \ - # python-prctl \ - numpy \ - imutils \ - scipy \ - psutil \ - && python3.8 -m pip install -U \ - Flask \ - paho-mqtt \ - PyYAML \ - matplotlib \ - click \ + && pip3 install -U /wheels/*.whl \ && 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 \ - && rm -rf /var/lib/apt/lists/* \ + && rm -rf /var/lib/apt/lists/* /wheels \ && (apt-get autoremove -y; apt-get autoclean -y) # get model and labels @@ -43,7 +27,6 @@ RUN wget -q https://github.com/google-coral/edgetpu/raw/master/test_data/ssd_mob COPY labelmap.txt /labelmap.txt RUN wget -q https://github.com/google-coral/edgetpu/raw/master/test_data/ssd_mobilenet_v2_coco_quant_postprocess.tflite -O /cpu_model.tflite - RUN mkdir /cache /clips WORKDIR /opt/frigate/ @@ -52,4 +35,4 @@ COPY detect_objects.py . COPY benchmark.py . COPY process_clip.py . -CMD ["python3.8", "-u", "detect_objects.py"] +CMD ["python3", "-u", "detect_objects.py"]