mirror of
				https://github.com/honestbee/drone-kubernetes.git
				synced 2025-11-04 13:38:06 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			368 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			368 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM alpine
 | 
						|
RUN apk -Uuv add curl ca-certificates bash
 | 
						|
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl
 | 
						|
RUN chmod +x ./kubectl
 | 
						|
RUN mv ./kubectl /usr/local/bin/kubectl
 | 
						|
ADD update.sh /bin/
 | 
						|
RUN chmod +x /bin/update.sh
 | 
						|
CMD bash -c /bin/update.sh
 |