Skip to content
Snippets Groups Projects
Commit 2129be70 authored by Jean-Baptiste Keck's avatar Jean-Baptiste Keck
Browse files

added pyfftw to the docker file

parent e3fba3c4
No related branches found
No related tags found
No related merge requests found
...@@ -197,6 +197,15 @@ RUN cd /tmp \ ...@@ -197,6 +197,15 @@ RUN cd /tmp \
# clang 6 for hysop build test # clang 6 for hysop build test
RUN apt-get install -y clang 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 # ensure all libraries are known by the runtime linker
RUN ldconfig RUN ldconfig
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment