-
Notifications
You must be signed in to change notification settings - Fork 5
New DataSHIELD analysis packages profiles #17
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -4,16 +4,16 @@ | |||||
| # https://github.com/datashield/docker-rock | ||||||
| # | ||||||
|
|
||||||
| # R 4.4.2, Rock 2.1.1 | ||||||
| FROM datashield/rock-base:6.3.1-R4.4.2 | ||||||
| # R 4.5.0, Rock 2.1.4 | ||||||
| FROM datashield/rock-base:6.3.3 | ||||||
|
|
||||||
| ENV DSMEDIATION_VERSION=0.0.3 | ||||||
| ENV DSEXPOSOME_VERSION=2.0.9 | ||||||
| ENV DSTIDYVERSE_VERSION=v1.0.1 | ||||||
| ENV DSTIDYVERSE_VERSION=v1.0.4 | ||||||
| ENV DSOMICS_VERSION=v1.0.18-2 | ||||||
| ENV DSMTL_VERSION=0.9.9 | ||||||
| ENV DSSURVIVAL_VERSION=v2.1.3 | ||||||
| ENV DSBASE_VERSION=6.3.1 | ||||||
| ENV DSBASE_VERSION=6.3.4-RC5 | ||||||
|
||||||
| ENV DSBASE_VERSION=6.3.4-RC5 | |
| ENV DSBASE_VERSION=v6.3.4-RC5 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,15 +5,15 @@ | |
| # | ||
|
|
||
| # R 4.5.0, Rock 2.1.1 | ||
| FROM datashield/rock-base:6.3.3 | ||
| FROM datashield/rock-base:6.3.4 | ||
|
|
||
| ENV DSMEDIATION_VERSION=0.0.3 | ||
| ENV DSEXPOSOME_VERSION=2.0.9 | ||
| ENV DSTIDYVERSE_VERSION=v1.0.4 | ||
| ENV DSOMICS_VERSION=v1.0.18-2 | ||
| ENV DSMTL_VERSION=0.9.9 | ||
| ENV DSSURVIVAL_VERSION=v2.1.3 | ||
| ENV DSBASE_VERSION=6.3.3 | ||
| ENV DSBASE_VERSION=v6.3.4 | ||
|
||
|
|
||
| ENV ROCK_LIB=/var/lib/rock/R/library | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| # | ||
| # Rock R Server Dockerfile with DataSHIELD Quebrada Lamda permissive profile | ||
| # | ||
| # https://github.com/datashield/docker-rock | ||
| # | ||
|
|
||
| FROM datashield/rock-quebrada-lamda:latest | ||
|
|
||
| ENV DSBASE_VERSION=v6.3.4-permissive | ||
|
|
||
| ENV ROCK_LIB=/var/lib/rock/R/library | ||
|
|
||
| # dsBase | ||
| RUN Rscript -e "remotes::install_github('datashield/dsBase', ref = '$DSBASE_VERSION', dependencies = TRUE, upgrade = FALSE, lib = '$ROCK_LIB')" && \ | ||
| chown -R rock $ROCK_LIB |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inconsistent version format:
DSBASE_VERSIONuses6.3.4-RC5-permissivewithout thevprefix. While the base version in lemon-donkey also lacks the prefix, consider addingvfor consistency with other DataSHIELD version patterns (e.g.,v6.3.4-RC5-permissive).