You've already forked dockerfiles
							
							
				mirror of
				https://github.com/vimagick/dockerfiles.git
				synced 2025-10-30 23:47:48 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			165 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			165 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| #
 | |
| # Dockerfile for ffmpeg
 | |
| #
 | |
| 
 | |
| FROM alpine:3
 | |
| MAINTAINER EasyPi Software Foundation
 | |
| 
 | |
| RUN apk add --no-cache ffmpeg
 | |
| 
 | |
| WORKDIR /data
 | |
| 
 | |
| ENTRYPOINT ["ffmpeg"]
 | |
| CMD ["--help"]
 |