From 4f2aee56814f13b619bbb735b9edf963ba3fd1c7 Mon Sep 17 00:00:00 2001 From: NachoCP Date: Wed, 3 Feb 2016 13:43:31 +0100 Subject: [PATCH] DockerFile updated to deploy plugins --- Dockerfile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 08fc150..26f43b9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,13 @@ from python:2.7 RUN apt-get update RUN apt-get -y install git RUN mkdir -p /senpy-plugins + RUN apt-get -y install python-numpy -RUN apt-get -y install build-dep python-scipy +RUN apt-get -y install python-scipy +RUN apt-get -y install python-sklearn +RUN apt-get -y install python-gevent +RUN apt-get -y install libopenblas-dev +RUN apt-get -y install gfortran RUN pip install --upgrade pip ADD id_rsa /root/.ssh/id_rsa @@ -16,7 +21,7 @@ RUN git clone git@github.com:gsi-upm/senpy-plugins-enterprise /senpy-plugins/ent RUN git clone https://github.com/gsi-upm/senpy-plugins-community /senpy-plugins/community RUN pip install /usr/src/app -RUN pip install -r /senpy-plugins/enterprise/requirements.txt +RUN pip install --no-use-wheel -r /senpy-plugins/enterprise/requirements.txt WORKDIR /senpy-plugins