Dockerfile.amd64 665 B

123456789101112131415
  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 \
  7. # VAAPI drivers for Intel hardware accel
  8. libva-drm2 libva2 i965-va-driver vainfo \
  9. ## Tensorflow lite
  10. && wget -q https://dl.google.com/coral/python/tflite_runtime-2.1.0.post1-cp38-cp38-linux_x86_64.whl \
  11. && python3.8 -m pip install tflite_runtime-2.1.0.post1-cp38-cp38-linux_x86_64.whl \
  12. && rm tflite_runtime-2.1.0.post1-cp38-cp38-linux_x86_64.whl \
  13. && rm -rf /var/lib/apt/lists/* \
  14. && (apt-get autoremove -y; apt-get autoclean -y)