mirror of
				https://github.com/blakeblackshear/frigate.git
				synced 2025-10-27 10:52:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			801 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			801 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM frigate-base
 | 
						|
LABEL maintainer "blakeb@blakeshome.com"
 | 
						|
 | 
						|
ENV DEBIAN_FRONTEND=noninteractive
 | 
						|
# Install packages for apt repo
 | 
						|
RUN apt-get -qq update \
 | 
						|
    && apt-get -qq install --no-install-recommends -y \
 | 
						|
        # ffmpeg runtime dependencies
 | 
						|
        libgomp1 \
 | 
						|
        # runtime dependencies
 | 
						|
        libopenexr24 \
 | 
						|
        libgstreamer1.0-0 \
 | 
						|
        libgstreamer-plugins-base1.0-0 \
 | 
						|
        libopenblas-base \
 | 
						|
        libjpeg-turbo8 \
 | 
						|
        libpng16-16 \
 | 
						|
        libtiff5 \
 | 
						|
        libdc1394-22 \
 | 
						|
        libaom0 \
 | 
						|
        libx265-179 \
 | 
						|
    ## Tensorflow lite
 | 
						|
    && pip3 install https://github.com/google-coral/pycoral/releases/download/release-frogfish/tflite_runtime-2.5.0-cp38-cp38-linux_armv7l.whl \
 | 
						|
    && rm -rf /var/lib/apt/lists/* \
 | 
						|
    && (apt-get autoremove -y; apt-get autoclean -y) |