RIC:1060: Change in PTL
[ric-plt/sdl.git] / docker_test / Dockerfile-Test
1 #
2 #   Copyright (c) 2018-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 #
18 #   This source code is part of the near-RT RIC (RAN Intelligent Controller)
19 #   platform project (RICP).
20 #
21
22 FROM ubuntu:18.04
23
24 # Install building tools and SDL dependencies:
25 RUN apt-get update && \
26     apt-get install -y \
27         build-essential \
28         automake \
29         libtool \
30         pkg-config \
31         libgtest-dev \
32         rpm \
33         devscripts \
34         gawk \
35         debhelper \
36         autoconf-archive \
37         libboost-filesystem-dev \
38         libboost-program-options-dev \
39         libboost-system-dev \
40         libhiredis-dev \
41         valgrind && \
42     apt-get clean
43
44 # Copy sourcefiles:
45 RUN mkdir -p /tmp/build
46 COPY . /tmp/build
47 WORKDIR /tmp/build
48
49 # Compile and run unit tests:
50 RUN ./autogen.sh && \
51     ./configure && \
52     make all && \
53     make test
54
55 # Build packages:
56 RUN make clean && \
57     make distclean && \
58     ./configure --with-rpm-dir=/tmp/pkgs && \
59     make rpm-pkg && \
60     make clean && \
61     make distclean && \
62     ./configure --with-deb-dir=/tmp/pkgs && \
63     make deb-pkg
64
65 RUN cp /tmp/build/docker_test/publish.sh /bin
66 ENTRYPOINT ["/bin/publish.sh"]