mirror of
				https://github.com/Smart123s/ItchClaim.git
				synced 2025-10-31 01:15:58 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			215 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			215 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM python:3.12
 | |
| 
 | |
| ENV ITCHCLAIM_DOCKER TRUE
 | |
| 
 | |
| WORKDIR /app
 | |
| 
 | |
| COPY requirements.txt .
 | |
| 
 | |
| RUN pip install -r requirements.txt
 | |
| 
 | |
| ENV PYTHONUNBUFFERED 1
 | |
| 
 | |
| COPY . .
 | |
| 
 | |
| VOLUME [ "/data" ]
 | |
| 
 | |
| ENTRYPOINT [ "python", "itchclaim.py" ]
 | 
