mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-10-31 13:50:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			371 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			371 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM rethinkdb:1.16.0
 | |
| 
 | |
| MAINTAINER BinZhao <wo@zhaob.in>
 | |
| 
 | |
| RUN apt-get update && \
 | |
|     apt-get install -yq curl && \
 | |
|     rm -rf /var/cache/apt/* && rm -rf /var/lib/apt/lists/* && \
 | |
|     curl -L http://stedolan.github.io/jq/download/linux64/jq > /usr/bin/jq && \
 | |
|     chmod u+x /usr/bin/jq
 | |
| 
 | |
| COPY ./run.sh /usr/bin/run.sh
 | |
| RUN chmod u+x /usr/bin/run.sh
 | |
| 
 | |
| CMD ["/usr/bin/run.sh"]
 |