Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FROM ubuntu:xenial

RUN apt-get update && apt-get install -y \
libcurl4-openssl-dev \
libxml2-dev \
apt-transport-https \
libssl-dev \
r-base-dev


RUN Rscript -e 'source("http://bioconductor.org/biocLite.R"); biocLite("ComplexHeatmap") ; biocLite("VariantAnnotation"); biocLite("Biostrings")'
#RUN Rscript -e 'install.packages("kinitr", repos="http://cran.uk.r-project.org")'
RUN Rscript -e 'install.packages("devtools", repos="http://cran.uk.r-project.org", dependencies=TRUE)'

ADD . /opt/maftools/
WORKDIR /opt/maftools

# We need to build the script locally
RUN Rscript -e 'library("devtools"); devtools::install()'