6 lines
		
	
	
		
			139 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			139 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM debian8_python3
 | |
| 
 | |
| ADD app /app
 | |
| RUN pip3 install -r /app/requirements.txt
 | |
| RUN (cd /app; python3 init.py)
 | |
| ENTRYPOINT python3 /app/main.py | 
