From 9a9ecfe2f3f3592c07c24e502b4ce252cf3bd377 Mon Sep 17 00:00:00 2001 From: Roni Riska Date: Wed, 25 Sep 2019 12:28:32 +0300 Subject: [PATCH] Add troubleshooting tools Add some troubleshooting related commands to the container: - iputils-ping - net-tools - curl Change-Id: I2bcb1c1dc7e98bcd7eb72066e4bec8e7f1ae226a Signed-off-by: Roni Riska --- Dockerfile | 6 ++++++ container-tag.yaml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7ff0724..de491db 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/container-tag.yaml b/container-tag.yaml index 30299ec..553a6e5 100644 --- a/container-tag.yaml +++ b/container-tag.yaml @@ -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 -- 2.16.6