f3fe3fbe68a8eefaf65547386cbc1661401f5932
[ric-plt/dbaas.git] / docker / Dockerfile.redis
1 #   Copyright (c) 2019 AT&T Intellectual Property.
2 #   Copyright (c) 2019 Nokia.
3 #
4 #   Licensed under the Apache License, Version 2.0 (the "License");
5 #   you may not use this file except in compliance with the License.
6 #   You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #   Unless required by applicable law or agreed to in writing, software
11 #   distributed under the License is distributed on an "AS IS" BASIS,
12 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 #   See the License for the specific language governing permissions and
14 #   limitations under the License.
15
16 #
17 #   This source code is part of the near-RT RIC (RAN Intelligent Controller)
18 #   platform project (RICP).
19 #
20
21
22 # Alpine-linux based containers use musl implementation of libc which causes
23 # valgrind to emit false positives. Therefore we run UT with valgrind in
24 # a separate build stage that uses ubuntu container with GNU libc installed.
25 #
26 # NOTE: The valgrind false positive problem could also potentially be solved
27 # with valgrind suppression files but that kind of approach may be fragile.
28 FROM ubuntu:19.10 as cpputest-build
29
30 RUN apt update && \
31     apt install -y \
32     automake \
33     autoconf \
34     cmake \
35     curl \
36     g++ \
37     gcc \
38     libtool \
39     make \
40     pkg-config \
41     valgrind
42
43 # Cpputest built-in memory checks generate false positives in valgrind.
44 # This is solved by compiling cpputest with memory checking disabled.
45 WORKDIR /cpputest
46 RUN curl -L https://github.com/cpputest/cpputest/releases/download/v3.8/cpputest-3.8.tar.gz | \
47     tar --strip-components=1 -xzf -
48 WORKDIR /cpputest/builddir
49 RUN cmake -DMEMORY_LEAK_DETECTION=OFF .. && \
50     make install
51
52 COPY ./redismodule /redismodule
53 WORKDIR /redismodule
54 RUN ./autogen.sh && \
55     ./configure && \
56     make test
57
58
59 FROM nexus3.o-ran-sc.org:10004/bldr-alpine3-go:2-rmr1.13.1 as build-env
60
61 RUN apk add cpputest
62 COPY ./redismodule /redismodule
63 WORKDIR /redismodule
64 RUN ./autogen.sh && \
65     ./configure --disable-unit-test-memcheck && \
66     make test && \
67     make install
68
69
70 FROM redis:5.0.5-alpine3.9
71
72 RUN apk add curl
73 COPY --from=build-env /usr/local/libexec/redismodule/libredismodule.so /usr/local/libexec/redismodule/libredismodule.so
74 WORKDIR /data