forked from GUDHI/gudhi-devel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile_gudhi_installation
80 lines (70 loc) · 1.87 KB
/
Dockerfile_gudhi_installation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
FROM ubuntu:20.04
# Update and upgrade distribution
RUN apt-get update && \
apt-get upgrade -y
# Tools necessary for installing and configuring Ubuntu
RUN apt-get install -y \
apt-utils \
locales \
tzdata
# Timezone
RUN echo "Europe/Paris" | tee /etc/timezone && \
ln -fs /usr/share/zoneinfo/Europe/Paris /etc/localtime && \
dpkg-reconfigure -f noninteractive tzdata
# Locale with UTF-8 support
RUN echo en_US.UTF-8 UTF-8 >> /etc/locale.gen && \
locale-gen && \
update-locale LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
# Update again
RUN apt-get update
# Required for Gudhi compilation
RUN apt-get install -y make \
g++ \
cmake \
graphviz \
perl \
texlive-bibtex-extra \
biber \
libboost-all-dev \
libeigen3-dev \
libgmp3-dev \
libmpfr-dev \
libtbb-dev \
libcgal-dev \
locales \
python3 \
python3-pip \
python3-pytest \
python3-tk \
python3-pybind11 \
libfreetype6-dev \
pkg-config \
curl
RUN curl -LO "https://github.com/CGAL/cgal/releases/download/v5.1/CGAL-5.1.tar.xz" \
&& tar xf CGAL-5.1.tar.xz \
&& mkdir build \
&& cd build \
&& cmake -DCMAKE_BUILD_TYPE=Release ../CGAL-5.1/ \
&& make install \
&& cd .. \
&& rm -rf build CGAL-5.1
RUN pip3 install \
numpy \
matplotlib \
scipy \
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.3.0/gudhi.3.3.0.tar.gz" \
&& tar xf gudhi.3.3.0.tar.gz \
&& cd gudhi.3.3.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 . \
&& cd python \
&& python3 setup.py install