-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdockerfile
More file actions
35 lines (30 loc) · 1.17 KB
/
dockerfile
File metadata and controls
35 lines (30 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
FROM rocker/rstudio:4.2.2
MAINTAINER chase mateusiak <chasem@wustl.edu>
RUN apt-get clean all && \
apt-get update && \
apt-get upgrade -y && \
apt-get install -y \
libhdf5-dev \
libcurl4-gnutls-dev \
libssl-dev \
libxml2-dev \
libpng-dev \
libxt-dev \
zlib1g-dev \
libbz2-dev \
liblzma-dev \
libglpk40 \
libgit2-dev \
libpq-dev \
libssl-dev \
curl \
wget \
&& apt-get clean all && \
apt-get purge && \
apt-get autoremove && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
RUN Rscript -e "install.packages(c('usethis', 'devtools', 'remotes', 'renv', 'future', 'doFuture', 'furrr', 'future.batchtools', 'future.callr', 'future.apply', 'progressr', 'future.tests', 'parallelly', 'RPostgres', 'rmarkdown', 'tidyverse', 'workflowr','BiocManager', 'usethis', 'ggplot2','RSQLite', 'readxl', 'here', 'vroom', 'caret', 'broom', 'ggsci', 'DT', 'TidyMultiqc'), Ncpus=10);"
RUN Rscript -e "BiocManager::install(version = '3.21')"
RUN Rscript -e "BiocManager::install(c('Biobase', 'DESeq2', 'tximport', 'edgeR'), Ncpus=10)"
#COPY user-settings /home/rstudio/.rstudio/monitored/user-settings/user-settings
COPY .Rprofile /home/rstudio/