add openssh-client to enable git clone via ssh
I like to mount my .ssh and .gitconfig folders inside of containers, and was surprised to find myself unable to `git clone git@github.com: ...`, this addresses that. Adds about 7MB to docker image.
This commit is contained in:
		@@ -41,6 +41,7 @@ RUN apt-get update \
 | 
				
			|||||||
    locales \
 | 
					    locales \
 | 
				
			||||||
    fonts-liberation \
 | 
					    fonts-liberation \
 | 
				
			||||||
    run-one \
 | 
					    run-one \
 | 
				
			||||||
 | 
					    openssh-client \
 | 
				
			||||||
 && apt-get clean && rm -rf /var/lib/apt/lists/*
 | 
					 && apt-get clean && rm -rf /var/lib/apt/lists/*
 | 
				
			||||||
 | 
					
 | 
				
			||||||
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && \
 | 
					RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && \
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user