You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »


RMr packages (both debian and rpm) are available from the repo:

https://packagecloud.io/o-ran-sc/staging

Packages are built with each code merge and pushed to the repo. Both a run-time and development package are available; both need to be installed to build user applications on top of RMr.

It is our recommendation that these packages be used rather than building the source as the overall time to create a container and/or execution environment will be greatly reduced.


Current versions:

  • 1.10.2  PIZ Trial version
  • 1.11.1  Amber release
  • 1.12.0  Leading edge development for Bronze release


Referencing RMR Packages

From a Dockerfile, RMR packages may be referenced and installed as illustrated below (ensure the correct version is specified):


ARG RMR_VER=1.11.1
RUN wget -nv --content-disposition https://packagecloud.io/o-ran-sc/master/packages/debian/stretch/rmr_${RMR_VER}_amd64.deb/download.deb
RUN wget -nv --content-disposition https://packagecloud.io/o-ran-sc/master/packages/debian/stretch/rmr-dev_${RMR_VER}_amd64.deb/download.deb
RUN dpkg -i rmr_${RMR_VER}_amd64.deb
RUN dpkg -i rmr-dev_${RMR_VER}_amd64.deb


  • No labels