From: beierlm Date: Tue, 13 Apr 2021 14:04:22 +0000 (-0400) Subject: Bugs 1499, 1500: missing runtime components X-Git-Tag: branch-sol006v331-start~14 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fdevops.git;a=commitdiff_plain;h=refs%2Fchanges%2F23%2F10623%2F2 Bugs 1499, 1500: missing runtime components Adding ca-certificates for SSL verification Adding ssh cli as it is needed by something in LCM Fixes Bug 1499 Fixes Bug 1500 Change-Id: Ib7fab398cf39fd577003cf5dd5ac48b8d1b70121 Signed-off-by: beierlm --- diff --git a/docker/LCM/Dockerfile b/docker/LCM/Dockerfile index 0c336d0c..530c20bb 100644 --- a/docker/LCM/Dockerfile +++ b/docker/LCM/Dockerfile @@ -74,6 +74,9 @@ FROM ubuntu:18.04 RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \ DEBIAN_FRONTEND=noninteractive apt-get --yes install python3-minimal=3.6.7-1~18.04 +RUN DEBIAN_FRONTEND=noninteractive apt-get --yes install \ + ca-certificates + COPY --from=INSTALL /usr/lib/python3/dist-packages /usr/lib/python3/dist-packages COPY --from=INSTALL /usr/local/lib/python3.6/dist-packages /usr/local/lib/python3.6/dist-packages @@ -82,7 +85,9 @@ COPY --from=INSTALL /usr/local/bin/helm /usr/local/bin/helm COPY --from=INSTALL /usr/local/bin/helm3 /usr/local/bin/helm3 COPY --from=INSTALL /usr/local/bin/juju /usr/local/bin/juju COPY --from=INSTALL /usr/bin/ssh-keygen /usr/bin/ssh-keygen +COPY --from=INSTALL /usr/bin/ssh /usr/bin/ssh COPY --from=INSTALL /usr/lib/x86_64-linux-gnu/ /usr/lib/x86_64-linux-gnu/ +COPY --from=INSTALL /lib/x86_64-linux-gnu/ /lib/x86_64-linux-gnu/ ########################################################################