8 lines
		
	
	
	
		
			140 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			140 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM python:slim
 | 
						|
 | 
						|
RUN pip install flask
 | 
						|
COPY /beer/beer.py /beer.py
 | 
						|
COPY /beer/templates /templates
 | 
						|
EXPOSE 5000
 | 
						|
 | 
						|
CMD ["python", "/beer.py"]
 |