mirror of
				https://github.com/speed47/spectre-meltdown-checker.git
				synced 2025-10-31 04:30:57 +01:00 
			
		
		
		
	* Listed the required volumes in the Dockerfile. * Added docker-compose.yml for convenience as users won't need to manually specify volumes and stuff when running through docker-compose. Adjusted README.md to reflect this change.
		
			
				
	
	
		
			12 lines
		
	
	
		
			189 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			189 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM alpine:3.7
 | |
| 
 | |
| RUN apk --update --no-cache add kmod binutils grep perl
 | |
| 
 | |
| COPY . /check
 | |
| 
 | |
| ENTRYPOINT ["/check/spectre-meltdown-checker.sh"]
 | |
| 
 | |
| VOLUME /boot
 | |
| VOLUME /dev/cpu
 | |
| VOLUME /lib/modules
 |