mirror of
				https://git.sr.ht/~cadence/NewLeaf
				synced 2025-10-31 11:35:35 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			167 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			167 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM python:3.12-alpine
 | |
| 
 | |
| WORKDIR /workdir
 | |
| 
 | |
| COPY ./requirements.txt ./requirements.txt
 | |
| 
 | |
| RUN pip install -r requirements.txt
 | |
| 
 | |
| COPY . .
 | |
| 
 | |
| EXPOSE 3000
 | |
| 
 | |
| CMD python index.py
 |