Release 1.0.2
[ric-app/ad.git] / Dockerfile
1 # ==================================================================================
2 #  Copyright (c) 2020 HCL Technologies Limited.
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 #Python 3.11 miniconda
17 FROM continuumio/miniconda3:23.10.0-1
18
19 # RMR setup
20 RUN mkdir -p /opt/route/
21
22 # sdl uses hiredis which needs gcc
23 RUN apt update && apt install -y gcc musl-dev
24
25 # copy rmr libraries from builder image in lieu of an Alpine package
26 ARG RMRVERSION=4.9.0
27 RUN wget --content-disposition https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/rmr_${RMRVERSION}_amd64.deb/download.deb && dpkg -i rmr_${RMRVERSION}_amd64.deb
28 RUN wget --content-disposition https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/rmr-dev_${RMRVERSION}_amd64.deb/download.deb && dpkg -i rmr-dev_${RMRVERSION}_amd64.deb
29 RUN rm -f rmr_${RMRVERSION}_amd64.deb rmr-dev_${RMRVERSION}_amd64.deb
30
31 ENV LD_LIBRARY_PATH /usr/local/lib/:/usr/local/lib64
32 ENV C_INCLUDE_PATH /usr/local/include
33 COPY local.rt /opt/route/local.rt
34 ENV RMR_SEED_RT /opt/route/local.rt
35
36 # Install
37 COPY setup.py /tmp
38 COPY LICENSE.txt /tmp/
39 # RUN mkdir -p /tmp/ad/
40 RUN pip install /tmp
41 RUN pip install ricxappframe
42 ENV PYTHONUNBUFFERED 1
43 ENV CONFIG_FILE /opt/ric/config/config-file.json
44 COPY src/ /src
45 CMD PYTHONPATH=/src:/usr/lib/python3.11/site-packages/:$PYTHONPATH run-src.py