mirror of
				https://github.com/honestbee/drone-kubernetes.git
				synced 2025-11-04 09:28:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
	
		
			371 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			371 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM alpine:latest
 | 
						|
RUN apk --no-cache add curl ca-certificates bash
 | 
						|
RUN curl -Lo /usr/local/bin/kubectl 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 /usr/local/bin/kubectl
 | 
						|
COPY update.sh /bin/
 | 
						|
ENTRYPOINT ["/bin/bash"]
 | 
						|
CMD ["/bin/update.sh"]
 |