X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=docker%2Fbldr-ubuntu-c-go-nng%2FDockerfile;h=6bee3407be8aaaece4223bc7b97376590c512e2b;hb=b09f682b3d2b2990b33daf2fe2d3462b4b18678d;hp=6809e090dcb81131a548aaef6eaa9f3d0f000ae5;hpb=1e2a13fdfea976656a35001bad382c3fd1f3520a;p=ci-management.git diff --git a/docker/bldr-ubuntu-c-go-nng/Dockerfile b/docker/bldr-ubuntu-c-go-nng/Dockerfile index 6809e090..6bee3407 100644 --- a/docker/bldr-ubuntu-c-go-nng/Dockerfile +++ b/docker/bldr-ubuntu-c-go-nng/Dockerfile @@ -16,22 +16,38 @@ # 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