Add extra line about src files are part of RIC platform project
[ric-plt/sdl.git] / ci / Dockerfile
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-all-dev \
38         libhiredis-dev && \
39     apt-get clean
40
41 # Copy sourcefiles:
42 RUN mkdir -p /tmp/build
43 COPY . /tmp/build
44 WORKDIR /tmp/build
45
46 # Compile and run unit tests:
47 RUN ./autogen.sh && \
48     ./configure && \
49     make all && \
50     make test
51
52 # Build packages:
53 RUN make clean && \
54     make distclean && \
55     ./package.sh --skip-test debian rpm
56
57 RUN cp /tmp/build/ci/publish.sh /bin
58 ENTRYPOINT ["/bin/publish.sh"]