16 lines
		
	
	
		
			323 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			323 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM debian:8
 | |
| 
 | |
| RUN apt-get -q update \
 | |
|     && apt-get -yq install --no-install-recommends \
 | |
|       build-essential \
 | |
|       libffi-dev \
 | |
|       libssl-dev \
 | |
|       python \
 | |
|       python-dev \
 | |
|       python-pip \
 | |
|     && apt-get autoclean \
 | |
|     && pip install --quiet --upgrade \
 | |
|       ansible
 | |
| 
 | |
| CMD ["ansible-playbook", "--help"]
 |