|  | @@ -51,10 +51,10 @@ RUN apt-get update && apt-get install -y time && apt-get clean
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  # Install Python 2.7
 | 
	
		
			
				|  |  |  RUN apt-get update && apt-get install -y python2.7 python-all-dev
 | 
	
		
			
				|  |  | -RUN curl https://bootstrap.pypa.io/2.7/get-pip.py | python2.7
 | 
	
		
			
				|  |  | +RUN curl https://bootstrap.pypa.io/pip/2.7/get-pip.py | python2.7
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  # Google Cloud platform API libraries
 | 
	
		
			
				|  |  | -RUN pip install --upgrade google-api-python-client oauth2client
 | 
	
		
			
				|  |  | +RUN pip install --upgrade google-auth==1.24.0 google-api-python-client==1.12.8 oauth2client==4.1.0
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  # Add Debian 'buster' repository, we will need it for installing newer versions of python
 | 
	
		
			
				|  |  |  RUN echo 'deb http://ftp.de.debian.org/debian buster main' >> /etc/apt/sources.list
 | 
	
	
		
			
				|  | @@ -105,7 +105,7 @@ RUN python3.8 -m ensurepip && \
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  RUN apt-get update && apt-get install -y python3.5 python3.5-dev
 | 
	
		
			
				|  |  | -RUN curl https://bootstrap.pypa.io/3.5/get-pip.py | python3.5
 | 
	
		
			
				|  |  | +RUN curl https://bootstrap.pypa.io/pip/3.5/get-pip.py | python3.5
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  RUN apt-get update && apt-get -t buster install -y python3.7 python3-all-dev
 | 
	
		
			
				|  |  |  RUN curl https://bootstrap.pypa.io/get-pip.py | python3.7
 |