diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..8574c1c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM stackbrew/ubuntu:12.04 +MAINTAINER Hervé Bredin + +RUN apt-get update +RUN apt-get install -y python-pip python-dev build-essential +RUN apt-get install -y gfortran libblas-dev liblapack-dev + +ADD . /src +RUN pip install /src + +CMD ['python'] \ No newline at end of file