summaryrefslogtreecommitdiff
path: root/Dockerfile_for_circleci_image
diff options
context:
space:
mode:
authorVincent Rouvreau <10407034+VincentRouvreau@users.noreply.github.com>2020-03-05 15:29:31 +0100
committerGitHub <noreply@github.com>2020-03-05 15:29:31 +0100
commit86fcc5c91113b89ddee79684c09b53af4b5ad035 (patch)
tree52079a6174ba78f9c7ee056ffe8bcb9032292b9c /Dockerfile_for_circleci_image
parentc1ce28b8e8021097825a893564aed97757f2ac8e (diff)
parente1dbf6da118615e20d2b642df98b7d3df7cfd8c7 (diff)
Merge pull request #239 from VincentRouvreau/parallel_tests
Improve CI
Diffstat (limited to 'Dockerfile_for_circleci_image')
-rw-r--r--Dockerfile_for_circleci_image22
1 files changed, 7 insertions, 15 deletions
diff --git a/Dockerfile_for_circleci_image b/Dockerfile_for_circleci_image
index ebd2f366..cca93f0c 100644
--- a/Dockerfile_for_circleci_image
+++ b/Dockerfile_for_circleci_image
@@ -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/*