-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
42 lines (34 loc) · 1.04 KB
/
Copy pathDockerfile
File metadata and controls
42 lines (34 loc) · 1.04 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
40
41
FROM ubuntu:latest
MAINTAINER David Spencer (dspencer@wustl.edu)
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install -y \
liblzma-dev \
python-biopython \
python-dev \
python-matplotlib \
python-numpy \
python-pip \
python-reportlab \
python-scipy \
python-tk \
zlib1g-dev \
r-base-core \
r-base \
r-base-dev \
r-recommended
RUN apt-get update -y && apt-get install -y libnss-sss
RUN apt-get update && apt-get install -y --no-install-recommends locales && \
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen && \
locale-gen en_US.UTF-8 && \
LC_ALL=en_US.UTF-8 && \
LANG=en_US.UTF-8 && \
/usr/sbin/update-locale LANG=en_US.UTF-8 && \
TERM=xterm
RUN pip install -U future futures pandas pyfaidx pysam hmmlearn
RUN pip install cnvkit==0.9.5
# Let matplotlib build its font cache
RUN cnvkit.py version
RUN Rscript -e "source('http://bioconductor.org/biocLite.R'); biocLite('PSCBS'); biocLite('cghFLasso')"
# ENTRYPOINT ["cnvkit.py"]
# CMD ["--help"]
CMD ["bash"]