-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
34 lines (26 loc) · 877 Bytes
/
Dockerfile
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
FROM medbook/meteor-base:v0.7
MAINTAINER Mike Risse
# Start Rscript install (pulled from https://github.com/rocker-org/rocker/blob/master/r-base/Dockerfile)
RUN apt-get update \
&& apt-get install -y --force-yes --no-install-recommends \
r-base \
r-recommended \
r-base-dev
# End Rscript install
# Install Limma R package requirements
RUN Rscript -e 'source("http://bioconductor.org/biocLite.R")' \
-e 'biocLite("edgeR")'
# Install python requirements
RUN apt-get install -y --force-yes --no-install-recommends \
python-pip \
python-dev \
build-essential
RUN easy_install pip
RUN pip install --upgrade virtualenv
RUN pip install pymongo
# For expression and variance filters
RUN pip install numpy
# needed in the outlier analysis
RUN apt-get install -y bc
# Install Java
RUN apt-get install -y --no-install-recommends openjdk-7-jdk