summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Rouvreau <10407034+VincentRouvreau@users.noreply.github.com>2020-02-04 21:19:46 +0100
committerGitHub <noreply@github.com>2020-02-04 21:19:46 +0100
commit1788ed7aa68a03350626a357e74260f2fd5e7e6c (patch)
tree3773bbd556661af9d1f03b3220e3523c58060379
parent06e719e06390da8e34c8e2d380496e8e5023408d (diff)
parent53f90be09bcfafd8edda763ba1532c519847929a (diff)
Merge pull request #217 from VincentRouvreau/dockerfile_gudhi_installation_3_1_0
Dockerfile_gudhi_installation for gudhi 3.1.0 version
-rw-r--r--Dockerfile_gudhi_installation10
1 files changed, 6 insertions, 4 deletions
diff --git a/Dockerfile_gudhi_installation b/Dockerfile_gudhi_installation
index 9fe20730..d5d86338 100644
--- a/Dockerfile_gudhi_installation
+++ b/Dockerfile_gudhi_installation
@@ -50,14 +50,16 @@ RUN pip3 install \
numpy \
matplotlib \
scipy \
- Cython
+ Cython \
+ POT \
+ scikit-learn
# apt clean up
RUN apt autoremove && rm -rf /var/lib/apt/lists/*
-RUN curl -LO "https://github.com/GUDHI/gudhi-devel/releases/download/tags%2Fgudhi-release-3.0.0/gudhi.3.0.0.tar.gz" \
-&& tar xf gudhi.3.0.0.tar.gz \
-&& cd gudhi.3.0.0 \
+RUN curl -LO "https://github.com/GUDHI/gudhi-devel/releases/download/tags%2Fgudhi-release-3.1.0/gudhi.3.1.0.tar.gz" \
+&& tar xf gudhi.3.1.0.tar.gz \
+&& cd gudhi.3.1.0 \
&& mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Release -DWITH_GUDHI_PYTHON=OFF -DPython_ADDITIONAL_VERSIONS=3 .. \
&& make all test install \
&& cmake -DWITH_GUDHI_PYTHON=ON . \