mirror of
				https://github.com/civsocit/olgram.git
				synced 2025-10-30 07:13:25 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			172 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			172 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM python:3.8-buster
 | |
| 
 | |
| COPY . /app
 | |
| 
 | |
| WORKDIR /app
 | |
| 
 | |
| RUN pip install --upgrade pip && \
 | |
|     pip install -r requirements.txt
 | |
| 
 | |
| EXPOSE 80
 | |
| 
 | |
| ENTRYPOINT ["./docker-entrypoint.sh"]
 |