Dockerfile.amd64 697 B

12345678910111213141516
  1. FROM frigate-base
  2. LABEL maintainer "blakeb@blakeshome.com"
  3. # Install packages for apt repo
  4. RUN apt-get -qq update \
  5. && apt-get -qq install --no-install-recommends -y \
  6. # ffmpeg dependencies
  7. libgomp1 \
  8. # VAAPI drivers for Intel hardware accel
  9. libva-drm2 libva2 i965-va-driver vainfo \
  10. ## Tensorflow lite
  11. && wget -q https://dl.google.com/coral/python/tflite_runtime-2.1.0.post1-cp38-cp38-linux_x86_64.whl \
  12. && python3.8 -m pip install tflite_runtime-2.1.0.post1-cp38-cp38-linux_x86_64.whl \
  13. && rm tflite_runtime-2.1.0.post1-cp38-cp38-linux_x86_64.whl \
  14. && rm -rf /var/lib/apt/lists/* \
  15. && (apt-get autoremove -y; apt-get autoclean -y)