From f3e70e3d8209c887e5816d2a8fb181562a1ccb40 Mon Sep 17 00:00:00 2001 From: Denis Arrivault <denis.arrivault@lif.univ-mrs.fr> Date: Mon, 15 May 2017 11:54:11 +0200 Subject: [PATCH] Adding latex in dockerfiles + installation with apt of scipy and sphinx --- docker/Dockerfile_X86_64 | 5 ++++- docker/Dockerfile_i686 | 7 +++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/docker/Dockerfile_X86_64 b/docker/Dockerfile_X86_64 index e3676f6..6119823 100644 --- a/docker/Dockerfile_X86_64 +++ b/docker/Dockerfile_X86_64 @@ -9,7 +9,10 @@ RUN apt-get update && apt-get install -y \ python3-dev \ python3-pip \ python3-tk \ - python3-matplotlib + python3-matplotlib \ + python3-scipy \ + python3-sphinx \ + texlive-latex-recommended RUN pip3 install --upgrade pip RUN pip3 install scipy nose coverage pytest pytest-cov Sphinx sphinxcontrib-bibtex diff --git a/docker/Dockerfile_i686 b/docker/Dockerfile_i686 index 4aabd0f..f822a9c 100644 --- a/docker/Dockerfile_i686 +++ b/docker/Dockerfile_i686 @@ -9,9 +9,12 @@ RUN apt-get update && apt-get install -y \ python3-dev \ python3-pip \ python3-tk \ - python3-matplotlib + python3-matplotlib \ + python3-scipy \ + python3-sphinx \ + texlive-latex-recommended RUN pip3 install --upgrade pip -RUN pip3 install scipy nose coverage pytest pytest-cov Sphinx sphinxcontrib-bibtex +RUN pip3 install nose coverage pytest pytest-cov sphinxcontrib-bibtex # Copy the ltfatpy sdist in the docker directory and uncomment the following line # if you want to include ltfatpy sources in the docker image : -- GitLab