You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: NEWS.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@
3
3
- remove sysreqs.r-hub.io to use {pak} instead for system requirement detection
4
4
- move from `pak::pkg_system_requirements` to `pak::pkg_sysreqs()` thanks to @B0ydT
5
5
-`dock_from_renv` allow to specify user to use in Dockerfile
6
+
- the `dependencies` parameter in `dock_from_renv` if set to `TRUE` will install required dependencies plus optional and development dependencies. defaut is `NA` only required (hard) dependencies,
#' If you set it to `NULL`, the latest available version of renv will be used.
34
25
#' @param use_pak boolean. If `TRUE` use pak to deal with dependencies during `renv::restore()`. FALSE by default
35
26
#' @param user Name of the user to specify in the Dockerfile with the USER instruction. Default is `NULL`, in which case the user from the FROM image is used.
27
+
#' @param dependencies What kinds of dependencies to install. Most commonly
28
+
#' one of the following values:
29
+
#' - `NA`: only required (hard) dependencies,
30
+
#' - `TRUE`: required dependencies plus optional and development
31
+
#' dependencies,
32
+
#' - `FALSE`: do not install any dependencies. (You might end up with a
33
+
#' non-working package, and/or the installation might fail.)
0 commit comments