forked from StuartWheater/dsBaseClient_base
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdsBaseClient_Dockerfile
More file actions
39 lines (33 loc) · 2.14 KB
/
dsBaseClient_Dockerfile
File metadata and controls
39 lines (33 loc) · 2.14 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
36
37
38
39
FROM cimg/base:current
RUN sudo apt-get update -y
RUN sudo apt-get upgrade -y
RUN sudo apt-get install --no-install-recommends software-properties-common dirmngr
RUN wget -qO- https://cloud.r-project.org/bin/linux/ubuntu/marutter_pubkey.asc | sudo tee -a /etc/apt/trusted.gpg.d/cran_ubuntu_key.asc
RUN sudo add-apt-repository "deb https://cloud.r-project.org/bin/linux/ubuntu $(lsb_release -cs)-cran40/"
RUN sudo apt-get update -qq
RUN sudo apt-get install -qq pkg-config -y
RUN sudo apt-get install -qq libxml2-dev libcurl4-openssl-dev libssl-dev libgit2-dev libharfbuzz-dev libfribidi-dev -y
RUN sudo apt-get install -qq --no-install-recommends r-base -y
RUN sudo apt-get update -y
RUN sudo apt-get upgrade -y
RUN sudo apt-get install cmake gfortran -y
RUN sudo apt-get install libxml2-dev libcurl4-openssl-dev libssl-dev libgsl-dev libgit2-dev r-base -y
RUN sudo apt-get install libharfbuzz-dev libfribidi-dev libmagick++-dev libfontconfig1-dev -y
RUN sudo apt-get install libfreetype6-dev libpng-dev libtiff5-dev libjpeg-dev -y
RUN sudo R -q -e "install.packages('devtools', dependencies=TRUE)"
RUN sudo R -q -e "install.packages('covr', dependencies=TRUE)"
RUN sudo R -q -e "install.packages('fields', dependencies=TRUE)"
RUN sudo R -q -e "install.packages('meta', dependencies=TRUE)"
RUN sudo R -q -e "install.packages('metafor', dependencies=TRUE)"
RUN sudo R -q -e "install.packages('ggplot2', dependencies=TRUE)"
RUN sudo R -q -e "install.packages('gridExtra', dependencies=TRUE)"
RUN sudo R -q -e "install.packages('data.table', dependencies=TRUE)"
RUN sudo R -q -e "install.packages('panelaggregation', dependencies=TRUE)"
RUN sudo R -q -e "install.packages('DSI', dependencies=TRUE)"
RUN sudo R -q -e "install.packages('DSOpal', dependencies=TRUE)"
RUN sudo R -q -e "install.packages('DSLite', dependencies=TRUE)"
RUN sudo R -q -e "install.packages('DSMolgenisArmadillo', dependencies=TRUE)"
RUN sudo R -q -e "install.packages('MolgenisArmadillo', dependencies=TRUE)"
RUN sudo R -q -e "install.packages('DSMolgenisArmadillo', dependencies=TRUE)"
RUN sudo R -q -e "install.packages('DescTools', dependencies=TRUE)"
RUN sudo R -q -e "install.packages('e1071', dependencies=TRUE)"