SuccessConsole Output

[devops-stage_2_v14.0] Running shell script
+ docker build --build-arg APT_PROXY=http://172.21.1.1:3142 -t osm/devops-v14.0 .
Sending build context to Docker daemon  300.5MB

Step 1/12 : FROM ubuntu:20.04
 ---> 18ca3f4297e7
Step 2/12 : ARG APT_PROXY
 ---> Using cache
 ---> 8171ca194766
Step 3/12 : RUN if [ ! -z $APT_PROXY ] ; then     echo "Acquire::http::Proxy \"$APT_PROXY\";" > /etc/apt/apt.conf.d/proxy.conf ;    echo "Acquire::https::Proxy \"$APT_PROXY\";" >> /etc/apt/apt.conf.d/proxy.conf ;    fi
 ---> Using cache
 ---> 780d4e45ee4f
Step 4/12 : RUN DEBIAN_FRONTEND=noninteractive apt-get update &&     DEBIAN_FRONTEND=noninteractive apt-get -y install         debhelper         dh-make         git         python3         python3-all         python3-dev         python3-setuptools
 ---> Using cache
 ---> 52da470ab83c
Step 5/12 : RUN python3 -m easy_install pip==21.3.1
 ---> Using cache
 ---> 1456318fa02a
Step 6/12 : RUN pip install tox==3.24.5
 ---> Using cache
 ---> a13b4fbb827f
Step 7/12 : ENV LC_ALL C.UTF-8
 ---> Using cache
 ---> 93b379c46e9d
Step 8/12 : ENV LANG C.UTF-8
 ---> Using cache
 ---> aff5bf937394
Step 9/12 : RUN DEBIAN_FRONTEND=noninteractive apt-get update &&     DEBIAN_FRONTEND=noninteractive apt-get -y install         unzip
 ---> Using cache
 ---> 2950ca367a86
Step 10/12 : RUN curl https://get.helm.sh/helm-v3.11.3-linux-amd64.tar.gz --output helm-v3.11.3.tar.gz     && tar -zxvf helm-v3.11.3.tar.gz     && mv linux-amd64/helm /usr/local/bin/helm     && rm -r linux-amd64/
 ---> Using cache
 ---> 2ab30dd688da
Step 11/12 : RUN curl https://get.datree.io | /bin/bash
 ---> Using cache
 ---> 77a67a635bf8
Step 12/12 : RUN helm plugin install https://github.com/datreeio/helm-datree
 ---> Using cache
 ---> 22788d7b0798
Successfully built 22788d7b0798
Successfully tagged osm/devops-v14.0:latest