Skip to content

Instantly share code, notes, and snippets.

@konrad
Last active August 3, 2016 18:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save konrad/253e18979b5fcd084dbb0b9f3e72334d to your computer and use it in GitHub Desktop.
Save konrad/253e18979b5fcd084dbb0b9f3e72334d to your computer and use it in GitHub Desktop.
Dockerfile for testing "The Lair"
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