-
Notifications
You must be signed in to change notification settings - Fork 29
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
How can containered workspaces use MRAN/checkpoint or GRAN? #31
Comments
We may also check GRAN for retrieving versions of packages |
Since be default we rely on But a specific MRAN-creation instruction would also be nice! Just provide a date and code similar to the one in
The user would do something along the lines of... setClass("CRANMirror", slots = list(baseurl = "string"), contains = "Instruction")
setClass("MRANMirror", slots = list(baseurl = "string", date = "date"), contains = "CRANMirror")
df <- dockerfile(...)
mirror <- CRANMirror("2017-01-01")
addInstruction(df, mirror) |
The best way for now to select the MRAN mirror is to select the base image manually. What See also #150 |
MRAN supports file style locations now: RevolutionAnalytics/checkpoint#218
Also, this issue RevolutionAnalytics/checkpoint#216 (comment) reports on how to make checkpoint work for an R Markdown document.
The text was updated successfully, but these errors were encountered: