90e7d01a56d6cb131ff58124b60950cf8dc42a56
[ci-management.git] / docker / bldr-ubuntu-c-go-nng / Dockerfile
1 # O-RAN-SC
2 #
3 # Copyright (C) 2019 AT&T Intellectual Property and Nokia
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #      http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 # Builder image with superset of CI tools for RIC components
18 # Uses Ubuntu 16.04 base then adds:
19 # Standard packages gcc and g++ 5.4, sctp etc.
20 # Cmake 3.14.5 from binary distro to /usr/local/bin
21 # Golang 1.12 from binary distro to /usr/local/go
22 # Ninja 1.9 from binary distro to /usr/local/bin
23 # Nanomsg Next Gen libs by cloning and building
24 # Boost 1.69 from source distro by building
25
26 FROM nexus3.o-ran-sc.org:10001/ubuntu:16.04
27
28 RUN apt-get update && apt-get install -y \
29     build-essential software-properties-common \
30     git zip wget make gcc g++  \
31     libsctp-dev lksctp-tools \
32     zlibc zlib1g zlib1g-dev \
33     python-dev autotools-dev libicu-dev libbz2-dev \
34     autoconf autoconf-archive libtool automake pkg-config
35
36 WORKDIR /tmp
37
38 RUN wget -nv https://github.com/Kitware/CMake/releases/download/v3.14.5/cmake-3.14.5-Linux-x86_64.sh \
39     && chmod +x cmake-3.14.5-Linux-x86_64.sh \
40     && ./cmake-3.14.5-Linux-x86_64.sh --prefix=/usr/local --skip-license
41
42 RUN wget -nv https://dl.google.com/go/go1.12.linux-amd64.tar.gz \
43     && tar -xf go1.12.linux-amd64.tar.gz \
44     && mv go /usr/local
45
46 RUN wget -nv https://github.com/ninja-build/ninja/releases/download/v1.9.0/ninja-linux.zip \
47     && unzip ninja-linux.zip \
48     && chmod +x ninja \
49     && mv ninja /usr/local/bin
50
51 RUN git clone https://github.com/nanomsg/nng.git \
52     && cd nng \
53     && mkdir build \
54     && cd build \
55     && cmake -DBUILD_SHARED_LIBS=1 -G Ninja .. \
56     && ninja \
57     && ninja install
58
59 RUN wget -nv https://dl.bintray.com/boostorg/release/1.69.0/source/boost_1_69_0.zip \
60     && unzip -q boost_1_69_0.zip \
61     && cd boost_1_69_0 \
62     && ./bootstrap.sh --prefix=/usr/ \
63     && ./b2 \
64     && ./b2 install \
65     && cd ../ \
66     && rm -rf boost_1_69_0.zip boost_1_69_0