Skip to content

Commit

Permalink
Added Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Anurag Sethi committed Oct 25, 2017
1 parent 935d6ee commit 5523598
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions Dockerfile
@@ -0,0 +1,30 @@
FROM ubuntu:14.04

RUN apt-get update && apt-get install -y \
curl \
bzip2 \
git

RUN curl -sSL https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -o /opt/miniconda.sh

RUN bash /opt/miniconda.sh -bfp /opt

RUN rm -rf /opt/miniconda.sh

RUN /opt/bin/conda install -y python=2

RUN /opt/bin/conda update conda

RUN /opt/bin/conda clean --all --yes

RUN /opt/bin/conda install -y -c bioconda metaseq

RUN /opt/bin/conda install -y seaborn

WORKDIR /opt

RUN git clone https://github.com/gersteinlab/MatchedFilter.git

COPY Dockerfile /opt/

MAINTAINER Anurag Sethi, Seven Bridges, <anurag.sethi@sbgenomics.com>

0 comments on commit 5523598

Please sign in to comment.