Skip to content

Instantly share code, notes, and snippets.

@pansapiens
Last active July 21, 2020 09:43
Show Gist options
  • Save pansapiens/42613327b7eacc1046a6c79085e37b1a to your computer and use it in GitHub Desktop.
Save pansapiens/42613327b7eacc1046a6c79085e37b1a to your computer and use it in GitHub Desktop.
biobloom in Docker
FROM ubuntu:18.04
RUN apt-get -y update && \
apt-get -y install git build-essential autogen autotools-dev automake \
libsdsl-dev libsdsl3 libsparsehash-dev zlib1g-dev libboost-all-dev libgomp1 && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
WORKDIR /
RUN git clone --depth 1 --branch 2.3.2 https://github.com/bcgsc/biobloom.git && \
cd /biobloom && \
git submodule update --init && ./autogen.sh && \
./configure && make && make install && \
cd / && rm -rf /biobloom && \
apt-get -y purge build-essential autogen autotools-dev automake \
libsdsl-dev libsparsehash-dev zlib1g-dev libboost-all-dev && \
apt-get -y autoremove --purge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment