mirror of
				https://github.com/blakeblackshear/frigate.git
				synced 2025-10-27 10:52:11 +01:00 
			
		
		
		
	* Improve ffmpeg versions handling * Remove fallback from LIBAVFORMAT_VERSION_MAJOR, it should always be set * Mention ffprobe in custom ffmpeg docs * Fix ffmpeg extraction * Fix go2rtc example formatting * Add fallback back to LIBAVFORMAT_VERSION_MAJOR * Fix linter
		
			
				
	
	
		
			18 lines
		
	
	
		
			485 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			485 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| # syntax=docker/dockerfile:1.4
 | |
| 
 | |
| # https://askubuntu.com/questions/972516/debian-frontend-environment-variable
 | |
| ARG DEBIAN_FRONTEND=noninteractive
 | |
| 
 | |
| FROM deps AS rpi-deps
 | |
| ARG TARGETARCH
 | |
| 
 | |
| # Install dependencies
 | |
| RUN --mount=type=bind,source=docker/rpi/install_deps.sh,target=/deps/install_deps.sh \
 | |
|     /deps/install_deps.sh
 | |
| 
 | |
| ENV DEFAULT_FFMPEG_VERSION="rpi"
 | |
| ENV INCLUDED_FFMPEG_VERSIONS="${DEFAULT_FFMPEG_VERSION}:${INCLUDED_FFMPEG_VERSIONS}"
 | |
| 
 | |
| WORKDIR /opt/frigate/
 | |
| COPY --from=rootfs / /
 |