# ================================================================================== # Copyright (c) 2020 HCL Technologies Limited. # Copyright (c) 2020 AT&T Intellectual Property. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ================================================================================== #Python 3.11 miniconda FROM continuumio/miniconda3:23.10.0-1 # RMR setup RUN mkdir -p /opt/route/ # sdl uses hiredis which needs gcc RUN apt update && apt install -y gcc musl-dev # copy rmr libraries from builder image in lieu of an Alpine package ARG RMRVERSION=4.9.0 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 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 RUN rm -f rmr_${RMRVERSION}_amd64.deb rmr-dev_${RMRVERSION}_amd64.deb # Upgrade pip, install tox RUN pip install --upgrade pip && pip install tox # copies COPY setup.py tox.ini LICENSE.txt /tmp/ COPY src/ /tmp/src COPY tests/ /tmp/tests RUN pip install /tmp # Run the unit tests WORKDIR /tmp RUN PYTHONPATH=/tmp/src:/usr/lib/python3.11/site-packages/:$PYTHONPATH tox -e code,flake8