Codebase list abyss / debian/2.0.2-2 Dockerfile
debian/2.0.2-2

Tree @debian/2.0.2-2 (Download .tar.gz)

Dockerfile @debian/2.0.2-2raw · history · blame

FROM ubuntu:latest
MAINTAINER Shaun Jackman <sjackman@gmail.com>

RUN apt-get update \
	&& apt-get install -y --no-install-recommends \
		make openmpi-bin ssh
ADD . /tmp/abyss
RUN apt-get install -y --no-install-recommends \
		automake g++ libboost-dev libopenmpi-dev libsparsehash-dev \
	&& cd /tmp/abyss \
	&& ./autogen.sh \
	&& mkdir build && cd build \
	&& ../configure --with-mpi=/usr/lib/openmpi \
	&& make install-strip \
	&& rm -rf /tmp/abyss \
	&& apt-get autoremove -y binutils \
		automake g++ libboost-dev libopenmpi-dev libsparsehash-dev
ENV SHELL=/bin/bash
ENTRYPOINT ["abyss-pe"]
CMD ["help"]