forked from boyuren158/GP-CERF
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #77 from NSAPH-Software/JOSS
Joss updates
- Loading branch information
Showing
57 changed files
with
346 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,38 @@ | ||
FROM rocker/verse:4.1.0 | ||
FROM rocker/verse:4.2.3 | ||
|
||
LABEL org.opencontainers.image.authors="nkhoshnevis@g.harvard.edu" | ||
|
||
RUN install2.r --error --repo https://mran.microsoft.com/snapshot/2022-05-26 \ | ||
data.table \ | ||
xgboost \ | ||
stats \ | ||
MASS \ | ||
spatstat.geom \ | ||
logger \ | ||
Rcpp \ | ||
RcppArmadillo \ | ||
ggplot2 \ | ||
rlang \ | ||
covr | ||
# Linux internal commands | ||
RUN apt-get update | ||
RUN apt-get install -y --no-install-recommends vim | ||
RUN apt-get install -y --no-install-recommends zsh | ||
RUN apt-get install -y --no-install-recommends libgsl-dev | ||
RUN apt-get clean | ||
|
||
# R package installation from CRAN | ||
RUN R -e "install.packages(c( \ | ||
'covr', \ | ||
'roxygen2', \ | ||
'devtools'), repos='https://cloud.r-project.org')" | ||
|
||
# R package installation from CRAN | ||
RUN R -e "install.packages(c( \ | ||
'parallel', \ | ||
'xgboost', \ | ||
'stats', \ | ||
'MASS', \ | ||
'spatstat.geom', \ | ||
'logger', \ | ||
'Rcpp', \ | ||
'RcppArmadillo', \ | ||
'ggplot2', \ | ||
'cowplot', \ | ||
'rlang', \ | ||
'Rfast', \ | ||
'SuperLearner', \ | ||
'wCorr'), repos='https://cloud.r-project.org')" | ||
|
||
ENV RENV_VERSION 0.15.1 | ||
RUN R -e "install.packages('remotes', repos = c(CRAN = 'https://cloud.r-project.org'))" | ||
RUN R -e "remotes::install_github('rstudio/renv@${RENV_VERSION}')" | ||
|
||
|
||
# Linux internal commands | ||
RUN apt-get update \ | ||
&& apt-get install -y --no-install-recommends \ | ||
vim \ | ||
zsh \ | ||
&& apt-get clean | ||
|
||
# |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.