Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Docker image 'housekeeping' to prepare for additional MCR versions #540

Merged
merged 4 commits into from
Feb 19, 2020
Merged
Changes from 3 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
11 changes: 6 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -129,12 +129,12 @@ RUN apt-get update -qq && apt-get -y --no-install-recommends install \

# Add bedops per the BEDOPS documentation
RUN wget https://github.com/bedops/bedops/releases/download/v2.4.37/bedops_linux_x86_64-v2.4.37.tar.bz2
RUN tar -jxvf bedops_linux_x86_64-v2.4.37.tar.bz2
RUN tar -jxvf bedops_linux_x86_64-v2.4.37.tar.bz2 && rm -f bedops_linux_x86_64-v2.4.37.tar.bz2
RUN cp bin/* /usr/local/bin

# HTSlib
RUN wget https://github.com/samtools/htslib/releases/download/1.9/htslib-1.9.tar.bz2
RUN tar -jxvf htslib-1.9.tar.bz2
RUN tar -jxvf htslib-1.9.tar.bz2 && rm -f htslib-1.9.tar.bz2
RUN cd htslib-1.9 && \
./configure && \
make && \
Expand Down Expand Up @@ -269,15 +269,16 @@ RUN apt-get -q update && \
apt-get install -q -y --no-install-recommends \
xorg

RUN mkdir /mcr-install && \
# This is the version of MCR required to run the precompiled version of GISTIC
RUN mkdir /mcr-install-v83 && \
mkdir /opt/mcr && \
cd /mcr-install && \
cd /mcr-install-v83 && \
wget https://www.mathworks.com/supportfiles/downloads/R2014a/deployment_files/R2014a/installers/glnxa64/MCR_R2014a_glnxa64_installer.zip && \
unzip -q MCR_R2014a_glnxa64_installer.zip && \
rm -f MCR_R2014a_glnxa64_installer.zip && \
./install -destinationFolder /opt/mcr -agreeToLicense yes -mode silent && \
cd / && \
rm -rf mcr-install
rm -rf mcr-install-v83

WORKDIR /home/rstudio/

Expand Down