mirror of https://github.com/docker/docker-py.git
				
				
				
			
		
			
				
	
	
		
			15 lines
		
	
	
		
			350 B
		
	
	
	
		
			Docker
		
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			350 B
		
	
	
	
		
			Docker
		
	
	
	
FROM python:2.7
 | 
						|
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 .
 |