Rolf Badorek | 8f63813 | 2019-10-09 10:24:58 +0300 | [diff] [blame] | 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 | |
Timo Tietavainen | a0745d2 | 2019-11-28 09:55:22 +0200 | [diff] [blame^] | 17 | # |
| 18 | # This source code is part of the near-RT RIC (RAN Intelligent Controller) |
| 19 | # platform project (RICP). |
| 20 | # |
| 21 | |
Rolf Badorek | cc9244c | 2019-11-12 18:19:37 +0200 | [diff] [blame] | 22 | FROM ubuntu:18.04 |
Rolf Badorek | 8f63813 | 2019-10-09 10:24:58 +0300 | [diff] [blame] | 23 | |
Rolf Badorek | cc9244c | 2019-11-12 18:19:37 +0200 | [diff] [blame] | 24 | # Install building tools and SDL dependencies: |
Rolf Badorek | 8f63813 | 2019-10-09 10:24:58 +0300 | [diff] [blame] | 25 | RUN apt-get update && \ |
Rolf Badorek | cc9244c | 2019-11-12 18:19:37 +0200 | [diff] [blame] | 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 && \ |
Rolf Badorek | 8f63813 | 2019-10-09 10:24:58 +0300 | [diff] [blame] | 39 | apt-get clean |
| 40 | |
| 41 | # Copy sourcefiles: |
| 42 | RUN mkdir -p /tmp/build |
| 43 | COPY . /tmp/build |
Rolf Badorek | cc9244c | 2019-11-12 18:19:37 +0200 | [diff] [blame] | 44 | WORKDIR /tmp/build |
Rolf Badorek | 8f63813 | 2019-10-09 10:24:58 +0300 | [diff] [blame] | 45 | |
| 46 | # Compile and run unit tests: |
Rolf Badorek | 8f63813 | 2019-10-09 10:24:58 +0300 | [diff] [blame] | 47 | RUN ./autogen.sh && \ |
| 48 | ./configure && \ |
| 49 | make all && \ |
| 50 | make test |
Rolf Badorek | cc9244c | 2019-11-12 18:19:37 +0200 | [diff] [blame] | 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"] |