diff --git a/src/.docker_modules/emase/0.10.16/Dockerfile b/src/.docker_modules/emase/0.10.16/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..6b41883f520fd53d874ffe3c68905d9166f04156 --- /dev/null +++ b/src/.docker_modules/emase/0.10.16/Dockerfile @@ -0,0 +1,15 @@ +FROM python:2.7 +MAINTAINER Laurent Modolo + +ENV EMASE_VERSION=0.10.16 + +RUN apt-get update \ + && apt-get install -y python-h5py \ + && pip install numpy==1.8.2 \ + && pip install numexpr==2.3.1 \ + && pip install cython>=0.13 \ + && pip install tables==3.1.0 \ + && pip install emase==${EMASE_VERSION} + +CMD ["bash"] + diff --git a/src/.docker_modules/emase/0.10.16/docker_init.sh b/src/.docker_modules/emase/0.10.16/docker_init.sh new file mode 100755 index 0000000000000000000000000000000000000000..1a0b7d71a5ce9673675452f9ae6c1520b412963d --- /dev/null +++ b/src/.docker_modules/emase/0.10.16/docker_init.sh @@ -0,0 +1,4 @@ +#!/bin/sh +docker pull lbmc/emase:0.10.16 +docker build src/.docker_modules/emase/0.10.16 -t 'lbmc/emase:0.10.16' +docker push lbmc/emase:0.10.16