Dockerfile.rpi 598 B

1234567891011121314151617
  1. FROM frigate-base
  2. LABEL maintainer "blakeb@blakeshome.com"
  3. ENV DEBIAN_FRONTEND=noninteractive
  4. # Install packages for apt repo
  5. RUN apt-get -qq update \
  6. && apt-get -qq install --no-install-recommends -y \
  7. ffmpeg \
  8. # runtime dependencies
  9. libopenexr24 \
  10. libgstreamer1.0-0 \
  11. libgstreamer-plugins-base1.0-0 \
  12. libopenblas-base \
  13. ## Tensorflow lite
  14. && pip3 install https://dl.google.com/coral/python/tflite_runtime-2.1.0.post1-cp38-cp38-linux_armv7l.whl \
  15. && rm -rf /var/lib/apt/lists/* \
  16. && (apt-get autoremove -y; apt-get autoclean -y)