Transferring external R-packages to production server

Hello,

So in my project we have created a (private) R-package which is to be installed on a production server and do some scheduled jobs. The R-package is created and built with a CI-pipeline in DevOps, and then transferred to the server and installed as a .tar.gz-file (probably not an optimal workflow).

So a problem we have is that the IT department does not allow for external packages to be installed from the internet on the production server. So upon installing the package, the code currently crashes, as it cannot install the dependencies.

Therefore, I am looking into methods which allow these packages to be transferred together with the .tar.gz-file in the release-pipeline, and was wondering if anyone has any useful experience with this?

I have been looking into a few alternatives, namely:

  • Renv - creates a package folder, but is it possible to use it with a project that's also an R-package? I am not sure how that would work, and if it would work in this pipeline
  • miniCRAN - Seems to create a local repo, which then surely could be transferred to the server in the release pipeline. Seems like it might solve my problem, but I didn't find a lot of resources online about this tool, and I'm not sure if it's actively maintained.

Thanks in advance for any input!

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.