Improve alpine base builder 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 #
24 # Some packages (e.g., mdclog) install to /usr/local/lib, others (e.g., rmr) install to /usr/local/lib64
25 # Alpine by default searches /usr/local/lib but not /usr/local/lib64
26 #
27 # How to get library files from this Docker base image:
28 # COPY --from=nexus3.o-ran-sc.org:10004/bldr-alpine3:TAG /usr/local/lib/libmdclog.so.X.X.X    /usr/local/lib
29 # COPY --from=nexus3.o-ran-sc.org:10004/bldr-alpine3:TAG /usr/local/lib64/librmr_si.so.X.X.X  /usr/local/lib
30
31 FROM python:3.7-alpine
32 RUN apk update && apk add \
33   autoconf \
34   automake \
35   build-base \
36   cmake \
37   libtool \
38   ninja \
39   pkgconfig \
40   python-dev \
41   sudo \
42   git \
43   go
44
45 # the autoconf-archive in alpine's edge repos is too new
46 # for our purposes, so we'll use one from the source.
47 RUN cd /tmp \
48     && git clone --branch v2015.09.25 git://git.sv.gnu.org/autoconf-archive.git \
49     && cp /tmp/autoconf-archive/m4/* /usr/share/aclocal \
50     && rm -rf /tmp/autoconf-archive
51
52 # MCDLOG, version is pinned
53 RUN cd /tmp \
54    && git clone --branch v0.0.4 https://gerrit.o-ran-sc.org/r/com/log \
55    && cd log \
56    && ./autogen.sh \
57    && ./configure \
58    && make \
59    && make install
60