8 lines
		
	
	
		
			194 B
		
	
	
	
		
			Docker
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			194 B
		
	
	
	
		
			Docker
		
	
	
		
			Executable File
		
	
	
	
	
| FROM python:alpine3.18
 | |
| WORKDIR /
 | |
| COPY . opt
 | |
| RUN apk add --no-cache supercronic
 | |
| RUN pip install requests
 | |
| RUN pip install qbittorrent-api
 | |
| RUN chmod +x /opt/entrypoint.sh
 | |
| CMD ["/opt/entrypoint.sh"] |