13 lines
		
	
	
		
			305 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			305 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM python:3.9-slim
 | |
| 
 | |
| ENV DEBIAN_FRONTEND=noninteractive
 | |
| RUN apt-get update && \
 | |
|     apt-get install -y python3-tk python3-pil python3-pil.imagetk && \
 | |
|     apt-get clean && rm -rf /var/lib/apt/lists/*
 | |
| 
 | |
| WORKDIR /app
 | |
| COPY . /app
 | |
| 
 | |
| RUN pip install --no-cache-dir -r requirements.txt
 | |
| 
 | |
| CMD ["python", "main.py"] | 
