Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Files can be downloaded and installed manually.  For example, here's how to install a recent version of the RMr library in a Dockerfile using an Debian/Ubuntu base:

Code Block
# Install RMr using debian package hosted at packagecloud.io
ARG RMR_VER=1.0.43
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

...