Dockerfile.aarch64 762 B

12345678910111213141516171819202122
  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. ## Tensorflow lite
  19. && pip3 install https://github.com/google-coral/pycoral/releases/download/release-frogfish/tflite_runtime-2.5.0-cp38-cp38-linux_aarch64.whl \
  20. && rm -rf /var/lib/apt/lists/* \
  21. && (apt-get autoremove -y; apt-get autoclean -y)