From 7655975fa9382b76be6ebcc28cb4b1531b5e6880 Mon Sep 17 00:00:00 2001 From: DANIEL STOICA Date: Wed, 20 May 2020 17:38:38 +0300 Subject: [PATCH] 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 --- docker/os/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 \ -- 2.16.6