Run tox in docker build
[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 FROM python:3.7
18
19 ADD . /tmp
20
21 # Install RMR
22 RUN apt-get update && apt-get install -y gcc git cmake
23 RUN git clone https://gerrit.oran-osc.org/r/ric-plt/lib/rmr
24 WORKDIR rmr
25 RUN git checkout a012cf63dfdad3656c995cb06c316fd208c63b98
26 RUN mkdir .build; cd .build; cmake ..; make install
27
28 # Install python-rmr
29 RUN pip install --upgrade pip
30
31 #install a1
32 WORKDIR /tmp
33
34 # Run our unit tests
35 RUN pip install tox
36 RUN tox
37
38 # do the actual install
39 RUN pip install .
40 EXPOSE 10000
41
42 # rmr setups
43 RUN mkdir -p /opt/route/
44 ENV LD_LIBRARY_PATH /usr/local/lib
45 ENV RMR_SEED_RT /opt/route/local.rt
46
47 CMD run.py