Skip to content

Instantly share code, notes, and snippets.

@inutano
Created August 4, 2016 03:29
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 inutano/73c68a830787216bb2cdcbf665345857 to your computer and use it in GitHub Desktop.
Save inutano/73c68a830787216bb2cdcbf665345857 to your computer and use it in GitHub Desktop.
FROM ubuntu:trusty
RUN apt-get -y update && \
apt-get install -y \
wget \
make \
libncurses5-dev \
libncursesw5-dev \
libboost-all-dev \
g++ && \
rm -rf /var/lib/apt/lists/*
WORKDIR /src
RUN wget 'https://sourceforge.net/projects/rnaseqassembly/files/Bridger_r2014-12-01.tar.gz' && \
tar zxvf Bridger_r2014-12-01.tar.gz && \
cd Bridger_r2014-12-01 && \
./configure && \
make
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment