You've already forked dockerfiles
							
							
				mirror of
				https://github.com/vimagick/dockerfiles.git
				synced 2025-10-30 23:47:48 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			192 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			192 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| #
 | |
| # Dockerfile for httpbin
 | |
| #
 | |
| 
 | |
| FROM vimagick/python:3
 | |
| MAINTAINER kev <noreply@easypi.info>
 | |
| 
 | |
| RUN pip install gunicorn httpbin
 | |
| 
 | |
| EXPOSE 80
 | |
| 
 | |
| CMD ["gunicorn", "--bind", "0.0.0.0:80", "httpbin:app"]
 |