mirror of https://github.com/docker/docker-py.git
				
				
				
			
		
			
				
	
	
		
			15 lines
		
	
	
		
			350 B
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			350 B
		
	
	
	
		
			Plaintext
		
	
	
	
| FROM python:3.5
 | |
| MAINTAINER Joffrey F <joffrey@docker.com>
 | |
| 
 | |
| RUN mkdir /home/docker-py
 | |
| WORKDIR /home/docker-py
 | |
| 
 | |
| COPY requirements.txt /home/docker-py/requirements.txt
 | |
| RUN pip install -r requirements.txt
 | |
| 
 | |
| COPY test-requirements.txt /home/docker-py/test-requirements.txt
 | |
| RUN pip install -r test-requirements.txt
 | |
| 
 | |
| COPY . /home/docker-py
 | |
| RUN pip install .
 |