CI: Add non voting tox verify GHA workflow call
[ric-app/qp.git] / Dockerfile-Unit-Test
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 # Upgrade pip, install tox
33 RUN pip install --upgrade pip && pip install tox
34
35 # copies
36 COPY setup.py tox.ini LICENSE.txt /tmp/
37 COPY src/ /tmp/src
38 COPY tests/ /tmp/tests
39 RUN pip install /tmp
40
41 # Run the unit tests
42 WORKDIR /tmp
43 RUN PYTHONPATH=/tmp/src:/usr/lib/python3.11/site-packages/:$PYTHONPATH tox -e code,flake8