From 2129be70a02b0746dc444065285aa5e568cb627b Mon Sep 17 00:00:00 2001
From: Jean-Baptiste Keck <Jean-Baptiste.Keck@imag.fr>
Date: Fri, 1 Jun 2018 17:37:16 +0200
Subject: [PATCH] added pyfftw to the docker file

---
 ci/docker_images/ubuntu/bionic/Dockerfile | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/ci/docker_images/ubuntu/bionic/Dockerfile b/ci/docker_images/ubuntu/bionic/Dockerfile
index bb6c00276..369eb2fba 100644
--- a/ci/docker_images/ubuntu/bionic/Dockerfile
+++ b/ci/docker_images/ubuntu/bionic/Dockerfile
@@ -197,6 +197,15 @@ RUN cd /tmp                                       \
 # clang 6 for hysop build test
 RUN apt-get install -y clang
 
+# pyfftw (with R2R transforms - experimental branch)
+RUN cd /tmp                                      \
+ && git clone https://github.com/drwells/pyFFTW  \
+ && cd pyFFTW                                    \
+ && git checkout r2r-try-two                     \
+ && pip install .                                \
+ && cd -                                         \
+ && rm -Rf /tmp/pyFFTW
+
 # ensure all libraries are known by the runtime linker
 RUN ldconfig
 
-- 
GitLab