SuccessConsole Output

[PLA-stage_2_v13.0] Running shell script
+ docker build --build-arg APT_PROXY=http://172.21.1.1:3142 -t osm/pla-v13.0 .
Sending build context to Docker daemon  150.7MB

Step 1/11 : FROM ubuntu:20.04
 ---> 1c5c8d0b973a
Step 2/11 : ARG APT_PROXY
 ---> Using cache
 ---> 8c207ee36ea6
Step 3/11 : 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
 ---> 6ed4dbab2c67
Step 4/11 : RUN DEBIAN_FRONTEND=noninteractive apt-get update &&     DEBIAN_FRONTEND=noninteractive apt-get -y install         debhelper         dh-python         git         python3         python3-all         python3-dev         python3-setuptools
 ---> Using cache
 ---> 9eefcb85bcfb
Step 5/11 : RUN python3 -m easy_install pip==21.3.1
 ---> Using cache
 ---> d24b5b6cf2aa
Step 6/11 : RUN pip install tox==3.24.5
 ---> Using cache
 ---> 998f6acb38fa
Step 7/11 : ADD https://github.com/MiniZinc/MiniZincIDE/releases/download/2.4.2/MiniZincIDE-2.4.2-bundle-linux-x86_64.tgz /minizinc.tgz


 ---> Using cache
 ---> 73a25f89b82f
Step 8/11 : RUN tar -zxf /minizinc.tgz &&     mv /MiniZincIDE-2.4.2-bundle-linux /minizinc
 ---> Using cache
 ---> 5ced06b46c2d
Step 9/11 : RUN mkdir /entry_data     && mkdir /entry_data/mzn-lib     && ln -s /entry_data/mzn-lib /minizinc/share/minizinc/exec
 ---> Using cache
 ---> 48b29fc9b2cf
Step 10/11 : ENV FZNEXEC "/entry_data/fzn-exec"
 ---> Using cache
 ---> b5d7d8f21192
Step 11/11 : ENV PATH "/minizinc/bin:${PATH}"
 ---> Using cache
 ---> 45ce54b02213
Successfully built 45ce54b02213
Successfully tagged osm/pla-v13.0:latest