blob: b63f51815ba988ca4e764dfc4e7f7c86a50c9a21 [file] [log] [blame]
Rolf Badorek8f638132019-10-09 10:24:58 +03001#
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
Timo Tietavainena0745d22019-11-28 09:55:22 +020017#
18# This source code is part of the near-RT RIC (RAN Intelligent Controller)
19# platform project (RICP).
20#
21
Rolf Badorekcc9244c2019-11-12 18:19:37 +020022FROM ubuntu:18.04
Rolf Badorek8f638132019-10-09 10:24:58 +030023
Rolf Badorekcc9244c2019-11-12 18:19:37 +020024# Install building tools and SDL dependencies:
Rolf Badorek8f638132019-10-09 10:24:58 +030025RUN apt-get update && \
Rolf Badorekcc9244c2019-11-12 18:19:37 +020026 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 && \
Rolf Badorek8f638132019-10-09 10:24:58 +030039 apt-get clean
40
41# Copy sourcefiles:
42RUN mkdir -p /tmp/build
43COPY . /tmp/build
Rolf Badorekcc9244c2019-11-12 18:19:37 +020044WORKDIR /tmp/build
Rolf Badorek8f638132019-10-09 10:24:58 +030045
46# Compile and run unit tests:
Rolf Badorek8f638132019-10-09 10:24:58 +030047RUN ./autogen.sh && \
48 ./configure && \
49 make all && \
50 make test
Rolf Badorekcc9244c2019-11-12 18:19:37 +020051
52# Build packages:
53RUN make clean && \
54 make distclean && \
55 ./package.sh --skip-test debian rpm
56
57RUN cp /tmp/build/ci/publish.sh /bin
58ENTRYPOINT ["/bin/publish.sh"]