-
Notifications
You must be signed in to change notification settings - Fork 184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Versions.md
to the wiki
#334
Conversation
I am just trying a Dockerfile with simply having:
and I get some unexpected warnings: that packages were compiled with R 4.0.5 (while the image tag I use is 4.0.3). Additionally the date in the repository is "not matching" your table above:
Is this expected ? |
Yes, that's one of the reasons I'm keeping this PR in draft. As you found, the CRAN mirror for that container images are dated differently than the original rule, the Dockerfile fix was implemented half a month ago (#328) and no container image built with the modified Dockerfile has been pushed yet. The current build system is such that Docker images containing older R versions will be built at the time of the new R release, so the documentation will match the actual state in a few months when R4.1.3? is released. |
https://www.rocker-project.org/use/extending/ You may find this page helpful. For example, if you build an image from the following Dockerfile, you can modify CRAN and install the package. FROM rocker/rstudio:4.0.3
RUN echo 'options(repos = c(CRAN = "https://packagemanager.rstudio.com/cran/__linux__/focal/2021-02-11"))' >> ${R_HOME}/etc/Rprofile.site
RUN install2.r --error --skipinstalled --ncpus -1 httr rlist dplyr purrr stringr AzureTableStor lubridate uuid rjson tidyr |
34604af
to
a660144
Compare
…ect the content of the document
a660144
to
d668ae6
Compare
d764146
to
e9324ce
Compare
I'm done editing, but for the next few months (until the release of R4.1.3) the CRAN dates will continue to be inconsistent between this document and the container images we can pull from DockerHub, so do you think it might be better not to merge until the release of R4.1.3? |
I will merge this when R 4.1.3 is released. |
Related to #201
Now that #328 has been merged, we can generate a table to see the list of configuration values for each version, like https://github.com/rocker-org/rocker-versioned/blob/master/VERSIONS.md
I think it would be useful if this could be registered in the wiki and automatically updated.
Screen shot
Versions.md
sidebar
ToDo
build/README.md
(About the disappearance of the corresponding version fromVersions.md
when the stackfile is deleted)