X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=docker%2Fbldr-ubuntu-c-go-nng%2FDockerfile;h=90e7d01a56d6cb131ff58124b60950cf8dc42a56;hb=d63fe20d98e7d498fecd6f5973a8c09084c8c7c2;hp=11029aa29a85a6bfdbf757bdb4ae21220236d90c;hpb=f55f21ea05bf4aa098902171e730f832a9867893;p=ci-management.git diff --git a/docker/bldr-ubuntu-c-go-nng/Dockerfile b/docker/bldr-ubuntu-c-go-nng/Dockerfile old mode 100755 new mode 100644 index 11029aa2..90e7d01a --- a/docker/bldr-ubuntu-c-go-nng/Dockerfile +++ b/docker/bldr-ubuntu-c-go-nng/Dockerfile @@ -14,22 +14,23 @@ # See the License for the specific language governing permissions and # limitations under the License. -# Builder image with CI tools for most RIC components -# Based on Ubuntu 16.04 -# Adds standard packages gcc and g++ 5.4, sctp boost etc. -# Adds Golang 1.12 from binary distro to /usr/local/go -# Adds Cmake 3.14.5 from binary distro to /usr/local/bin -# Adds Ninja 1.9 from binary distro to /usr/local/bin -# Adds Nanomsg Next Gen libs by cloning and building +# 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. +# 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 -FROM ubuntu:16.04 +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 libboost-all-dev \ + python-dev autotools-dev libicu-dev libbz2-dev \ autoconf autoconf-archive libtool automake pkg-config WORKDIR /tmp @@ -54,3 +55,12 @@ RUN git clone https://github.com/nanomsg/nng.git \ && cmake -DBUILD_SHARED_LIBS=1 -G Ninja .. \ && ninja \ && ninja install + +RUN wget -nv https://dl.bintray.com/boostorg/release/1.69.0/source/boost_1_69_0.zip \ + && unzip -q boost_1_69_0.zip \ + && cd boost_1_69_0 \ + && ./bootstrap.sh --prefix=/usr/ \ + && ./b2 \ + && ./b2 install \ + && cd ../ \ + && rm -rf boost_1_69_0.zip boost_1_69_0