mirror of
				https://github.com/jtesta/ssh-audit.git
				synced 2025-11-03 18:52:15 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			119 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			119 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM python:3.8-slim
 | 
						|
 | 
						|
WORKDIR /
 | 
						|
 | 
						|
COPY ssh-audit.py .
 | 
						|
COPY src/ .
 | 
						|
 | 
						|
ENTRYPOINT ["python3", "/ssh-audit.py"]
 | 
						|
 | 
						|
EXPOSE 2222
 |