Tommy Carpenter | 5ad8f03 | 2019-05-30 14:33:21 -0400 | [diff] [blame^] | 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 | RUN pip install . |
| 34 | EXPOSE 10000 |
| 35 | |
| 36 | # rmr setups |
| 37 | RUN mkdir -p /opt/route/ |
| 38 | ENV LD_LIBRARY_PATH /usr/local/lib |
| 39 | ENV RMR_SEED_RT /opt/route/local.rt |
| 40 | |
| 41 | CMD run.py |