blob: 8b445005884ade7936e7ddfa3403b3afe40cb2a4 [file] [log] [blame]
Tommy Carpenter5ad8f032019-05-30 14:33:21 -04001# ==================================================================================
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# ==================================================================================
17FROM python:3.7
18
19ADD . /tmp
20
21# Install RMR
22RUN apt-get update && apt-get install -y gcc git cmake
23RUN git clone https://gerrit.oran-osc.org/r/ric-plt/lib/rmr
24WORKDIR rmr
25RUN git checkout a012cf63dfdad3656c995cb06c316fd208c63b98
26RUN mkdir .build; cd .build; cmake ..; make install
27
28# Install python-rmr
29RUN pip install --upgrade pip
30
31#install a1
32WORKDIR /tmp
33RUN pip install .
34EXPOSE 10000
35
36# rmr setups
37RUN mkdir -p /opt/route/
38ENV LD_LIBRARY_PATH /usr/local/lib
39ENV RMR_SEED_RT /opt/route/local.rt
40
41CMD run.py