Drop NNG library from all base build images
[it/dev.git] / bldr-imgs / bldr-alpine3 / Dockerfile
1 # O-RAN-SC
2 #
3 # Copyright (C) 2019-2020 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 # This is an all-things-to-all-ORAN-people build image with:
18 # alpine v 3.11
19 # gcc/g++ v 8
20 # golang v 1.13.4
21 # python 3.7
22 # mdc log libs (libmdclog.so, libmdbclog.so.X.X.X; see below for pinned version)
23 # rmr libs (librmr_si.so, librmr_si.so.X.X.X; see below for pinned version)
24 #
25 # Some packages (e.g., mdclog) install to /usr/local/lib, others (e.g., rmr) install to /usr/local/lib64
26 # Alpine by default searches /usr/local/lib but not /usr/local/lib64
27 #
28 # How to get library files from this Docker base image:
29 # COPY --from=nexus3.o-ran-sc.org:10004/bldr-alpine3:TAG /usr/local/lib/libmdclog.so.X.X.X    /usr/local/lib
30 # COPY --from=nexus3.o-ran-sc.org:10004/bldr-alpine3:TAG /usr/local/lib64/librmr_si.so.X.X.X  /usr/local/lib
31
32 FROM python:3.7-alpine
33 RUN apk update && apk add \
34   autoconf \
35   automake \
36   build-base \
37   cmake \
38   libtool \
39   ninja \
40   pkgconfig \
41   python-dev \
42   sudo \
43   git \
44   go
45
46 # the autoconf-archive in alpine's edge repos is too new
47 # for our purposes, so we'll use one from the source.
48 RUN cd /tmp \
49     && git clone --branch v2015.09.25 git://git.sv.gnu.org/autoconf-archive.git \
50     && cp /tmp/autoconf-archive/m4/* /usr/share/aclocal \
51     && rm -rf /tmp/autoconf-archive
52
53 # MCDLOG, version is pinned
54 RUN cd /tmp \
55    && git clone --branch v0.0.4 https://gerrit.o-ran-sc.org/r/com/log \
56    && cd log \
57    && ./autogen.sh \
58    && ./configure \
59    && make \
60    && make install
61
62 # install a well known working rmr including development header files,
63 # which uses a submodule to install NNG at a known commit
64 RUN apk update && apk add autoconf automake build-base cmake libtool ninja pkgconfig git sudo
65 RUN git clone --branch 3.7.1 https://gerrit.oran-osc.org/r/ric-plt/lib/rmr \
66     && cd rmr \
67     && mkdir .build; cd .build \
68     && echo "<<<installing rmr devel headers>>>" \
69     && cmake .. -DDEV_PKG=1; make install \
70     && echo "<<< installing rmr .so>>>" \
71     && cmake .. -DDEV_PKG=0; make install