summaryrefslogtreecommitdiffstats
path: root/docker/scripts/lib_dnf.sh
diff options
context:
space:
mode:
authorDave Wallace <dwallacelf@gmail.com>2021-02-03 17:03:04 -0500
committerDave Wallace <dwallacelf@gmail.com>2021-02-03 17:03:04 -0500
commitf86199579c45c2eac2d6f3ddd1a72a26b35fcbfa (patch)
tree79befa7104e3f68f2485bca2cdbbc85df4377b6d /docker/scripts/lib_dnf.sh
parenteff6ddf51d350123b490a8326d8b21681eb47765 (diff)
Add packages to docker image builder
- sshpass for CSIT - gdb for VPP core decode - Add comment to end of builder script to detect completion in build log. Signed-off-by: Dave Wallace <dwallacelf@gmail.com> Change-Id: I6ddbc066f07514dbd76f02104bc04c3bc70da163
Diffstat (limited to 'docker/scripts/lib_dnf.sh')
-rw-r--r--docker/scripts/lib_dnf.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/docker/scripts/lib_dnf.sh b/docker/scripts/lib_dnf.sh
index e5948fbda..e3fd768af 100644
--- a/docker/scripts/lib_dnf.sh
+++ b/docker/scripts/lib_dnf.sh
@@ -101,8 +101,9 @@ COPY . .
# enchant for 'make docs' (VPP)
# libffi-devel for python cffi install (Ubuntu20.04/VPP/aarch64)
# libpcap-devel for python pypcap install (CSIT)
-# lapack-devel for python numpy/scipy (CSIT/aarch64)
-# openblas-devel for python numpy/scipy (CSIT/aarch64)
+# lapack-devel for python numpy/scipy (CSIT/aarch64)
+# openblas-devel for python numpy/scipy (CSIT/aarch64)
+# sshpass for CSIT
#
RUN export LC_ALL=C.UTF8 \\
&& dnf update -y \\
@@ -120,6 +121,7 @@ RUN export LC_ALL=C.UTF8 \\
enchant \\
emacs \\
facter \\
+ gdb \\
git \\
git-review \\
graphviz \\
@@ -142,6 +144,7 @@ RUN export LC_ALL=C.UTF8 \\
rake \\
rsync \\
ruby-devel \\
+ sshpass \\
sudo \\
tree \\
unzip \\