Select Git revision
-
Mathieu Genete authoredMathieu Genete authored
Dockerfile 653 B
FROM ubuntu:16.04
MAINTAINER Alexey Gurevich "https://github.com/alexeigurevich"
# Setup a base system
RUN apt-get update && \
apt-get install -y curl wget g++ make libboost-all-dev git \
tar gzip bzip2 build-essential \
python2.7-dev python-setuptools python-pip python-virtualenv \
zlib1g-dev default-jdk perl && \
apt-get upgrade -y libstdc++6
# Matplotlib dependencies
RUN apt-get update && apt-get install -y pkg-config libfreetype6-dev \
libpng-dev python-matplotlib
# QUAST installation
COPY . quast
RUN pip install --upgrade setuptools pip && \
cd quast && \
python setup.py develop && \
cd ..