-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathDockerfile
More file actions
18 lines (14 loc) · 884 Bytes
/
Dockerfile
File metadata and controls
18 lines (14 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM ubuntu:14.04
MAINTAINER Abhejit Rajagopal <rajagopal.abhejit@gmail.com>
RUN apt-get update && \
apt-get install -y wget vim git tcl && \
apt-get install -y swig python-dev python-numpy python-scipy python-matplotlib python-pandas python-sklearn python-h5py && \
apt-get install -y python3-dev python3-numpy python3-scipy python3-matplotlib python3-pandas python3-h5py
RUN apt-get install -y guile-2.0-dev autoconf zlib1g pkg-config && \
apt-get install -y libgsl0ldbl harminv fftw-dev && \
apt-get install -y openmpi-bin openmpi-doc libopenmpi-dev libhdf5-openmpi-dev && \
cd /home && git clone https://github.com/FilipDominec/python-meep-install.git && cd python-meep-install && ./python-meep-install.sh && cd .. && rm -rf python-meep-install
RUN apt-get install -y libhdf5-mpich2-dev && \
apt-get install -y libhdf5-openmpi-dev
RUN mkdir /home/hostSRC
VOLUME /home/hostSRC