Dockerfile.armv7hf 767 B

123456789101112131415161718192021222324
  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 runtime dependencies
  8. libgomp1 \
  9. # runtime dependencies
  10. libopenexr24 \
  11. libgstreamer1.0-0 \
  12. libgstreamer-plugins-base1.0-0 \
  13. libopenblas-base \
  14. libjpeg-turbo8 \
  15. libpng16-16 \
  16. libtiff5 \
  17. libdc1394-22 \
  18. libaom0 \
  19. libx265-179 \
  20. ## Tensorflow lite
  21. && pip3 install https://dl.google.com/coral/python/tflite_runtime-2.1.0.post1-cp38-cp38-linux_armv7l.whl \
  22. && rm -rf /var/lib/apt/lists/* \
  23. && (apt-get autoremove -y; apt-get autoclean -y)