Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92819864
Dockerfile
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Nov 23, 23:11
Size
741 B
Mime Type
text/plain
Expires
Mon, Nov 25, 23:11 (1 d, 10 h)
Engine
blob
Format
Raw Data
Handle
22519278
Attached To
rTAMAAS tamaas
Dockerfile
View Options
FROM debian:stable-slim
MAINTAINER Lucas Frérot <lucas.frerot@epfl.ch>
# Install any needed packages from ubuntu repos
RUN apt-get -qq update && apt-get install -y \
curl \
gcc \
git \
libboost-dev \
libpython3-dev \
libthrust-dev \
python3 \
python3-dev \
python3-numpy \
python3-pip \
python3-scipy \
scons \
&& rm -rf /var/lib/apt/lists/*
RUN pip3 install pytest
# Compiling fftw
RUN cd /opt && \
curl -s http://www.fftw.org/fftw-3.3.7.tar.gz | tar -xz && \
cd fftw-3.3.7 && \
./configure --prefix=$PWD --enable-shared --enable-openmp && \
make && make install && \
cd ../..
ENV FFTW_ROOT /opt/fftw-3.3.7
# No need for python2
RUN ln -s $(which python3) /usr/local/bin/python
Event Timeline
Log In to Comment