Skip to content

Commit

Permalink
Split RUN into multiple lines for readability
Browse files Browse the repository at this point in the history
  • Loading branch information
menger5 authored Aug 26, 2024
1 parent 4486392 commit 9f712f0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion update_metadata_bdc/v1.0.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ ENV R_VERSION 4.3.2
# Configure CRAN for package retrieval
RUN echo "r <- getOption('repos'); r['CRAN'] <- 'http://cran.us.r-project.org'; options(repos = r);" > ~/.Rprofile
RUN Rscript -e "install.packages(c('getopt', 'dplyr', 'httr', 'stringr','lubridate','sevenbridges2'), dependencies = T)"
RUN Rscript -e "library('getopt'); ##### R SESSION INFORMATION #####; sessionInfo()"
RUN Rscript -e "library('getopt'); \
##### R SESSION INFORMATION #####; \
sessionInfo()"

#----------------------------------------------------------------
# Copy over analysis scripts
Expand Down

0 comments on commit 9f712f0

Please sign in to comment.