Reorganize package list for ease of scanning 91/391/2
authorLott, Christopher (cl778h) <cl778h@att.com>
Thu, 20 Jun 2019 13:14:28 +0000 (09:14 -0400)
committerLott, Christopher (cl778h) <cl778h@att.com>
Thu, 20 Jun 2019 13:48:45 +0000 (09:48 -0400)
No functional change

Signed-off-by: Lott, Christopher (cl778h) <cl778h@att.com>
Change-Id: I63d48a549723867f7cf161849dc998e4798a6dcc

docker/bldr-ubuntu-c-go-nng/Dockerfile

index 6809e09..6bee340 100644 (file)
 
 # Builder image with superset of CI tools for RIC components
 # Uses Ubuntu 16.04 base then adds:
-# Standard packages gcc and g++ 5.4, sctp etc.
+# Standard apt packages including gcc and g++ 5.4
 # Cmake 3.14.5 from binary distro to /usr/local/bin
 # Golang 1.12 from binary distro to /usr/local/go
 # Ninja 1.9 from binary distro to /usr/local/bin
-# Nanomsg Next Gen libs by cloning and building
-# Boost 1.69 from source distro by building
+# Nanomsg Next Gen v1.1.1 from source distro
+# Boost 1.69 from source distro
 
 FROM nexus3.o-ran-sc.org:10001/ubuntu:16.04
 
 RUN apt-get update && apt-get install -y \
-    build-essential software-properties-common \
-    git zip wget make gcc g++  \
-    libsctp-dev lksctp-tools \
-    zlibc zlib1g zlib1g-dev \
-    python-dev autotools-dev libicu-dev libbz2-dev \
-    autoconf autoconf-archive libtool automake pkg-config
+    autoconf \
+    autoconf-archive \
+    automake \
+    autotools-dev \
+    build-essential \
+    g++  \
+    gcc \
+    git \
+    libbz2-dev \
+    libicu-dev \
+    libsctp-dev \
+    libtool \
+    lksctp-tools \
+    make \
+    python-dev \
+    pkg-config \
+    software-properties-common \
+    wget \
+    zlib1g \
+    zlib1g-dev \
+    zlibc \
+    zip
 
 WORKDIR /tmp