Last active
August 3, 2016 18:24
-
-
Save konrad/253e18979b5fcd084dbb0b9f3e72334d to your computer and use it in GitHub Desktop.
Dockerfile for testing "The Lair"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:16.04 | |
RUN apt-get update && apt-get dist-upgrade -y | |
RUN apt-get install -y curl wget git ruby python3 sra-toolkit snakemake libssl-dev libcurl4-openssl-dev libxml2-dev | |
WORKDIR /root | |
RUN wget https://github.com/pachterlab/kallisto/releases/download/v0.43.0/kallisto_linux-v0.43.0.tar.gz && \ | |
tar xzf kallisto_linux-v0.43.0.tar.gz && \ | |
mv kallisto_linux-v0.43.0/kallisto /usr/bin/ && \ | |
rm -rf kallisto_linux-v0.43.0 kallisto_linux-v0.43.0.tar.gz | |
RUN echo 'source("http://bioconductor.org/biocLite.R"); biocLite("devtools"); biocLite("pachterlab/sleuth"); biocLite("biomaRt")' \ | |
| R --no-save | |
WORKDIR /root | |
RUN git clone https://github.com/pachterlab/bears_analyses.git | |
WORKDIR /root/bears_analyses/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment