Add readme and metadata, no functional change
[ric-plt/a1.git] / Dockerfile
1 # ==================================================================================
2 #       Copyright (c) 2019 Nokia
3 #       Copyright (c) 2018-2019 AT&T Intellectual Property.
4 #
5 #   Licensed under the Apache License, Version 2.0 (the "License");
6 #   you may not use this file except in compliance with the License.
7 #   You may obtain a copy of the License at
8 #
9 #          http://www.apache.org/licenses/LICENSE-2.0
10 #
11 #   Unless required by applicable law or agreed to in writing, software
12 #   distributed under the License is distributed on an "AS IS" BASIS,
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 #   See the License for the specific language governing permissions and
15 #   limitations under the License.
16 # ==================================================================================
17
18 # CI to build a Docker image with the A1 mediator
19 # Adds gcc and cmake to build RMr library
20
21 FROM python:3.7
22
23 ADD . /tmp
24
25 # Install RMr
26 RUN apt-get update && apt-get install -y gcc git cmake
27 RUN git clone https://gerrit.oran-osc.org/r/ric-plt/lib/rmr
28 WORKDIR rmr
29 # This pins RMr to a known working version
30 RUN git checkout 68d09fa5028e47e763c44c30647da31e77eda64a
31 RUN mkdir .build; cd .build; cmake ..; make install
32
33 # Install python-rmr
34 RUN pip install --upgrade pip
35
36 #install a1
37 WORKDIR /tmp
38
39 # Run our unit tests
40 RUN pip install tox
41 RUN tox
42
43 # do the actual install
44 RUN pip install .
45 EXPOSE 10000
46
47 # rmr setups
48 RUN mkdir -p /opt/route/
49 ENV LD_LIBRARY_PATH /usr/local/lib
50 ENV RMR_SEED_RT /opt/route/local.rt
51
52 CMD run.py