Merge pull request #23 from mathematicalmichael/patch-1

add openssh-client to enable git clone via ssh, adding @mathematicalmichael as author.
This commit is contained in:
Chris 2020-08-09 09:03:31 +02:00 committed by GitHub
commit 1c8b32a23c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

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

View File

@ -1,4 +1,4 @@
LABEL maintainer="Christoph Schranz <christoph.schranz@salzburgresearch.at>" LABEL authors="Christoph Schranz <christoph.schranz@salzburgresearch.at>, Mathematical Michael <consistentbayes@gmail.com>"
USER root USER root
@ -16,7 +16,7 @@ RUN set -ex \
graphviz==0.11 \ graphviz==0.11 \
' \ ' \
&& apt-get update \ && apt-get update \
&& apt-get -y install htop apt-utils graphviz libgraphviz-dev \ && apt-get -y install htop apt-utils graphviz libgraphviz-dev openssh-client \
&& pip install --no-cache-dir $buildDeps && pip install --no-cache-dir $buildDeps
# Install various extensions # Install various extensions