Skip to content
Snippets Groups Projects
Commit 9c33b5a2 authored by Mark Beierl's avatar Mark Beierl
Browse files

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: default avatarbeierlm <mark.beierl@canonical.com>
parent 14e0ad76
No related branches found
No related tags found
No related merge requests found
......@@ -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/
########################################################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment