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:
Michael Pilosov 2020-08-08 12:29:37 -06:00 committed by GitHub
parent 1bf52b7f8a
commit 6766adb7fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 && \