Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ This ensures that different users have the same versions of packages installed.
See also [collaborating with renv](https://rstudio.github.io/renv/articles/collaborating.html).
The first time you open the RStudio project `renv` should automatically download and install the appropriate version of `renv` into the project library.
After this has completed, you can use `renv::restore()` to restore the R packages in the local project library on your machine.
If this fails, try `renv::restore(transactional = FALSE)`.

In case you need another package than the ones installed (see the [DESCRIPTION file](DESCRIPTION)) for this project, ask one of the admins to do this for you.
It is not allowed to do this in a [protocol-specific branch](#branching).
Expand Down
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ RUN R -e "install.packages('renv', repos = c(CRAN = 'https://cloud.r-project.org
RUN R -e "renv::consent(provided = TRUE)"
COPY renv.lock renv.lock
RUN R -e "renv::restore()"
RUN R -e "renv::install(c('reactable', 'zen4R', 'keyring', 'slickR'))"
RUN R -e "renv::install(c('reactable', 'zen4R', 'keyring'))"
RUN R -e "renv::install('yonicd/slickR@1a469961b203f9260a49b24e3ec78aef3ef54798')"
RUN R -e "renv::isolate()"


Expand Down