-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
13 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
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
### vortexing/fhwdlR:v2.0.3 | ||
## Pull the R base image | ||
FROM rocker/r-base:4.1.1 | ||
# Update | ||
RUN apt-get update | ||
RUN apt-get install -y libssl-dev libxml2-dev libcurl4-openssl-dev | ||
# Install required packages | ||
RUN R -e "install.packages('remotes', dependencies = TRUE)" | ||
# Install from github | ||
RUN R -e "remotes::install_github('FredHutch/[email protected]', dependencies = TRUE)" | ||
# Override the R CMD for workflow managers | ||
CMD ["/bin/bash"] |