mirror of
				https://github.com/zoriya/Kyoo.git
				synced 2025-11-03 19:17:16 -05: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"]
 |