Add troubleshooting tools 07/1007/2
authorRoni Riska <roni.riska@nokia.com>
Wed, 25 Sep 2019 09:28:32 +0000 (12:28 +0300)
committerRoni Riska <roni.riska@nokia.com>
Wed, 25 Sep 2019 09:31:44 +0000 (12:31 +0300)
Add some troubleshooting related commands to the container:
 - iputils-ping
 - net-tools
 - curl

Change-Id: I2bcb1c1dc7e98bcd7eb72066e4bec8e7f1ae226a
Signed-off-by: Roni Riska <roni.riska@nokia.com>
Dockerfile
container-tag.yaml

index 7ff0724..de491db 100644 (file)
@@ -56,6 +56,12 @@ RUN export GOPATH=$HOME/go && \
 
 # Ubuntu or something smaller?
 FROM ubuntu:18.04
+# For trouble-shooting
+RUN apt-get update; apt-get install -y \
+    iputils-ping \
+    net-tools \
+    curl
+
 # Create the configuration directory for ves agent
 RUN mkdir -p /etc/ves-agent
 COPY --from=gobuild root/go/bin /root/go/bin
index 30299ec..553a6e5 100644 (file)
@@ -1,4 +1,4 @@
 # The Jenkins job uses this string for the tag in the image name
 # for example nexus3.o-ran-sc.org:10004/my-image-name:0.0.1
 ---
-tag: 0.0.3
+tag: 0.0.4