From 21a2a20cc6f4640f00d9f410f225cef00d213819 Mon Sep 17 00:00:00 2001 From: Herve Bredin Date: Thu, 30 Oct 2014 17:55:41 +0100 Subject: [PATCH] docker: add base pyannote/core image --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile 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