Merge "CI: Add merge workflow that runs SonarCloud scan"
[ric-app/ad.git] / Dockerfile-Unit-Test
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 # Upgrade pip, install tox
32 RUN pip install --upgrade pip && pip install tox
33
34 # copies
35 COPY setup.py tox.ini LICENSE.txt /tmp/
36 RUN pip install /tmp
37 COPY src/ /tmp/src
38 COPY tests/ /tmp/tests
39 # Run the unit tests
40 WORKDIR /tmp
41 RUN PYTHONPATH=/tmp/src:/usr/lib/python3.11/site-packages/:$PYTHONPATH tox -e code,flake8