From 923e321fc0f0e0d2b1a17c5692f27077d7dfc9dc Mon Sep 17 00:00:00 2001 From: Vincent Guyader Date: Mon, 1 Jul 2024 07:27:38 +0000 Subject: [PATCH] update doc --- man/dock_from_renv.Rd | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/man/dock_from_renv.Rd b/man/dock_from_renv.Rd index e687466..8692541 100644 --- a/man/dock_from_renv.Rd +++ b/man/dock_from_renv.Rd @@ -15,6 +15,7 @@ dock_from_renv( extra_sysreqs = NULL, use_pak = FALSE, user = NULL, + dependencies = NA, renv_version ) } @@ -42,6 +43,16 @@ Will be installed with apt-get install.} \item{user}{Name of the user to specify in the Dockerfile with the USER instruction. Default is \code{NULL}, in which case the user from the FROM image is used.} +\item{dependencies}{What kinds of dependencies to install. Most commonly +one of the following values: +\itemize{ +\item \code{NA}: only required (hard) dependencies, +\item \code{TRUE}: required dependencies plus optional and development +dependencies, +\item \code{FALSE}: do not install any dependencies. (You might end up with a +non-working package, and/or the installation might fail.) +}} + \item{renv_version}{character. The renv version to use in the generated Dockerfile. By default, it is set to the version specified in the \code{renv.lock} file. If the \code{renv.lock} file does not specify a renv version, the version of renv bundled with dockerfiler,