Add missing software layers 33/10633/2
authorbeierlm <mark.beierl@canonical.com>
Wed, 14 Apr 2021 14:12:58 +0000 (10:12 -0400)
committerbeierlm <mark.beierl@canonical.com>
Wed, 14 Apr 2021 16:49:16 +0000 (18:49 +0200)
Adds openssh to MON
Adds mysqladmin to POL
Adds envsubst to tests

Fixes bug 1503

Change-Id: Ieafee31695bfc6ccecb1f1bcf52b57e91a45686e
Signed-off-by: beierlm <mark.beierl@canonical.com>
docker/MON/Dockerfile
docker/POL/Dockerfile
docker/tests/Dockerfile

index 1f6ecf4..d7ae32d 100644 (file)
@@ -31,6 +31,9 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
     python3-dev=3.8.2-0ubuntu2 && \
     python3 -m easy_install pip==21.0.1
 
+RUN DEBIAN_FRONTEND=noninteractive apt-get --yes install \
+    openssh-client=1:8.2p1-4ubuntu0.2
+
 ARG PYTHON3_OSM_COMMON_URL
 ARG PYTHON3_OSM_MON_URL
 ARG PYTHON3_N2VC_URL
@@ -54,9 +57,17 @@ FROM ubuntu:20.04 as FINAL
 RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
     DEBIAN_FRONTEND=noninteractive apt-get --yes install python3-minimal=3.8.2-0ubuntu2
 
+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.8/dist-packages  /usr/local/lib/python3.8/dist-packages
 COPY --from=INSTALL /usr/bin/osm* /usr/bin/
+COPY --from=INSTALL /usr/bin/scp /usr/bin/scp
+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/
 
 COPY scripts/ scripts/
 
index 6f02afe..c50cd10 100644 (file)
@@ -55,6 +55,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
 COPY --from=INSTALL /usr/lib/python3/dist-packages /usr/lib/python3/dist-packages
 COPY --from=INSTALL /usr/local/lib/python3.8/dist-packages  /usr/local/lib/python3.8/dist-packages
 COPY --from=INSTALL /usr/bin/osm* /usr/bin/
+COPY --from=INSTALL /usr/bin/mysqladmin /usr/bin/
 
 COPY scripts/ scripts/
 
index a0cc7f8..f191ddf 100644 (file)
@@ -27,6 +27,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
     python3 -m easy_install pip==21.0.1
 
 RUN DEBIAN_FRONTEND=noninteractive apt-get --yes install \
+    gettext-base \
     git=1:2.17.1-1ubuntu0.8 \
     jq=1.5+dfsg-2 \
     libcurl4-openssl-dev=7.58.0-2ubuntu3.13 \