From: DANIEL STOICA Date: Wed, 20 May 2020 14:38:38 +0000 (+0300) Subject: Fix sshpass and openssh-client install issue X-Git-Url: https://gerrit.akraino.org/r/gitweb?p=validation.git;a=commitdiff_plain;h=7655975fa9382b76be6ebcc28cb4b1531b5e6880 Fix sshpass and openssh-client install issue Sshpass and openssh-client are installed in os build container, but must be installed in os container Signed-off-by: DANIEL STOICA Change-Id: I4329ac98ece075a9c9bf1b36ae710fd68aac8150 --- diff --git a/docker/os/Dockerfile b/docker/os/Dockerfile index 2e7f36a..1981b16 100644 --- a/docker/os/Dockerfile +++ b/docker/os/Dockerfile @@ -31,8 +31,6 @@ RUN apt-get update && apt-get -y install \ wget \ golint \ sqlite3 \ - openssh-client \ - sshpass \ debian-goodies \ build-essential \ pkg-config \ @@ -111,6 +109,8 @@ COPY --from=build /root/go/bin /root/go/bin COPY --from=build /root/go/src/github.com/bin /root/go/src/github.com/bin RUN apt-get update && apt-get -y install \ + openssh-client \ + sshpass \ python3-pip python3.6 && \ cd /usr/bin && ln -s python3 python && \ pip3 install -r /wheels/requirements/pip-requirements.txt \