summaryrefslogtreecommitdiff
path: root/Dockerfile_for_circleci_image
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile_for_circleci_image')
-rw-r--r--Dockerfile_for_circleci_image6
1 files changed, 5 insertions, 1 deletions
diff --git a/Dockerfile_for_circleci_image b/Dockerfile_for_circleci_image
index f0c73d76..ebd2f366 100644
--- a/Dockerfile_for_circleci_image
+++ b/Dockerfile_for_circleci_image
@@ -25,6 +25,7 @@ ENV LC_ALL en_US.UTF-8
# Required for Gudhi compilation
RUN apt-get install -y make \
+ git \
g++ \
cmake \
graphviz \
@@ -43,10 +44,12 @@ RUN apt-get install -y make \
python3-pip \
python3-pytest \
python3-tk \
+ python3-pybind11 \
libfreetype6-dev \
pkg-config
RUN pip3 install \
+ setuptools \
numpy \
matplotlib \
scipy \
@@ -55,7 +58,8 @@ RUN pip3 install \
scikit-learn \
sphinx \
sphinx-paramlinks \
- sphinxcontrib-bibtex
+ sphinxcontrib-bibtex \
+ tensorflow
# apt clean up
RUN apt autoremove && rm -rf /var/lib/apt/lists/*