CI: Add non voting tox verify GHA workflow call
[ric-app/qp.git] / Dockerfile
1 # ==================================================================================
2 #   Copyright (c) 2020 HCL Technologies Limited.    
3 #   Copyright (c) 2020 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 #Python 3.11 miniconda
18 FROM continuumio/miniconda3:23.10.0-1
19
20 # RMR setup
21 RUN mkdir -p /opt/route/
22
23 # sdl uses hiredis which needs gcc
24 RUN apt update && apt install -y gcc musl-dev
25
26 # copy rmr libraries from builder image in lieu of an Alpine package
27 ARG RMRVERSION=4.9.0
28 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
29 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
30 RUN rm -f rmr_${RMRVERSION}_amd64.deb rmr-dev_${RMRVERSION}_amd64.deb
31
32 ENV LD_LIBRARY_PATH /usr/local/lib/:/usr/local/lib64
33 COPY tests/fixtures/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 pip install /tmp
40 COPY src/ /src
41 # Run
42 ENV PYTHONUNBUFFERED 1
43 CMD PYTHONPATH=/src:/usr/lib/python3.11/site-packages/:$PYTHONPATH run-qp.py