-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
📝 comments in docker, docker in makefile
- Loading branch information
Showing
2 changed files
with
4 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
FROM rocker/tidyverse | ||
# longer running depends so they're cached | ||
# options(repos=structure(c(CRAN="http://lib.stat.cmu.edu/R/CRAN"))) | ||
RUN R -e "\ | ||
install.packages(c('itsadug','XML','oro.nifti', 'qualtRics','RPostgreSQL', 'gridExtra', 'pscyh','BiocManager'));\ | ||
BiocManager::install('BiocParallel');\ | ||
remotes::install_github('Jfortin1/neuroCombatData');\ | ||
remotes::install_github('Jfortin1/neuroCombat_Rpackage');" | ||
RUN bash -c "cpan install URI::Encode<<<yes" | ||
RUN bash -c "cpan install URI::Encode<<<yes" # used for testing db uri; adds a minute to build | ||
COPY . /lncdr | ||
RUN R -e "remotes::install_local('lncdr', upgrade=F)" |
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