mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-10-31 13:50:01 +00:00 
			
		
		
		
	- Move keygen image mesosphere/kubernetes-mesos-keygen -> mesosphere/kubernetes-keygen:v1.0.0 - Remove resolveip in favor of github.com/karlkfi/resolveip (resolveip.sh) - Remove util-temp-dir.sh in favor of github.com/karlkfi/intemp (intemp.sh) - Refactor bash code to use intemp (extract functions to scripts) - Remove util-ssl.sh in favor of mesosphere/kubernetes-keygen
		
			
				
	
	
		
			21 lines
		
	
	
		
			505 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			505 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM ubuntu:14.04.3
 | |
| MAINTAINER Mesosphere <support@mesosphere.io>
 | |
| 
 | |
| RUN locale-gen en_US.UTF-8
 | |
| RUN dpkg-reconfigure locales
 | |
| ENV LANG en_US.UTF-8
 | |
| ENV LC_ALL en_US.UTF-8
 | |
| 
 | |
| RUN apt-get update -qq && \
 | |
|     DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -qqy \
 | |
|         ca-certificates \
 | |
|         wget \
 | |
|         curl \
 | |
|         && \
 | |
|     apt-get clean
 | |
| 
 | |
| RUN curl -o- https://raw.githubusercontent.com/karlkfi/resolveip/v1.0.2/install.sh | bash
 | |
| 
 | |
| COPY ./bin/* /usr/local/bin/
 | |
| COPY ./opt/* /opt/
 |