mirror of
				https://github.com/zoriya/Kyoo.git
				synced 2025-10-31 10:37:13 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			151 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			151 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM python:3.12
 | |
| WORKDIR /app
 | |
| 
 | |
| COPY ./requirements.txt .
 | |
| RUN pip3 install -r ./requirements.txt
 | |
| 
 | |
| COPY . .
 | |
| ENTRYPOINT ["python3", "-m"]
 | |
| CMD ["scanner"]
 |