summaryrefslogtreecommitdiff
path: root/Dockerfile_for_circleci_image
diff options
context:
space:
mode:
authorMarc Glisse <marc.glisse@inria.fr>2020-03-17 13:57:29 +0100
committerMarc Glisse <marc.glisse@inria.fr>2020-03-17 13:57:29 +0100
commit2d3ab6a6a93c272827624e55ef39b093b3a9805b (patch)
tree08b278460a8d3212b3dcd03c2a5c06c77c7cf0c0 /Dockerfile_for_circleci_image
parent55c1385419edd4e152df219dfff596d2631367f1 (diff)
parent559df19e65a7e2d45af9cc85e06af14b86d06009 (diff)
Merge remote-tracking branch 'origin/master' into gen2
Diffstat (limited to 'Dockerfile_for_circleci_image')
-rw-r--r--Dockerfile_for_circleci_image24
1 files changed, 8 insertions, 16 deletions
diff --git a/Dockerfile_for_circleci_image b/Dockerfile_for_circleci_image
index ebd2f366..1eededb5 100644
--- a/Dockerfile_for_circleci_image
+++ b/Dockerfile_for_circleci_image
@@ -30,7 +30,7 @@ RUN apt-get install -y make \
cmake \
graphviz \
perl \
- texlive-bibtex-extra \
+ texlive-full \
biber \
doxygen \
libboost-all-dev \
@@ -42,24 +42,16 @@ RUN apt-get install -y make \
locales \
python3 \
python3-pip \
- python3-pytest \
python3-tk \
- python3-pybind11 \
libfreetype6-dev \
- pkg-config
+ pkg-config \
+ curl
-RUN pip3 install \
- setuptools \
- numpy \
- matplotlib \
- scipy \
- Cython \
- POT \
- scikit-learn \
- sphinx \
- sphinx-paramlinks \
- sphinxcontrib-bibtex \
- tensorflow
+ADD .github/build-requirements.txt /
+ADD .github/test-requirements.txt /
+
+RUN pip3 install -r build-requirements.txt
+RUN pip3 install -r test-requirements.txt
# apt clean up
RUN apt autoremove && rm -rf /var/lib/apt/lists/*