Skip to content
Snippets Groups Projects
Commit 90fe3ddf authored by Mads M. Pedersen's avatar Mads M. Pedersen
Browse files

Merge branch 'fw_into_docker' into 'master'

Added fused wind to docker image

See merge request !12
parents a45a01b3 b7e20f4e
No related branches found
No related tags found
1 merge request!94Handle disabled mpi
...@@ -8,18 +8,22 @@ MAINTAINER Jenni Rinker <rink@dtu.dk> ...@@ -8,18 +8,22 @@ MAINTAINER Jenni Rinker <rink@dtu.dk>
# get list of update linux files and install lib for matplotlib # get list of update linux files and install lib for matplotlib
# (anaconda3:5.0.0 image doesn't have the library) # (anaconda3:5.0.0 image doesn't have the library)
# also install "make" because image doesn't have it either # also install "make" because image doesn't have it either
# also install gcc and gfortran for fused-wake/wind-io
RUN apt-get update && \ RUN apt-get update && \
apt-get install make && \ apt-get install make && \
apt-get install libgl1-mesa-glx -y apt-get install libgl1-mesa-glx -y && \
apt-get install gcc gfortran -y
# use conda to update itself and install packages not in the # use conda to update itself and install packages not in the
# anaconda3 image # anaconda3 image
RUN conda update -y conda &&\ RUN conda update -y conda && \
conda install -y sphinx_rtd_theme && \ conda install -y sphinx_rtd_theme && \
conda install -y pytest-cov && \ conda install -y pytest-cov && \
conda clean -y --all conda clean -y --all
# update pip then install openmdao (nocache to save space) # update pip then install openmdao, windio and fused-wake (nocache to save space)
RUN pip install --upgrade pip &&\ RUN pip install --upgrade pip && \
pip install --no-cache-dir openmdao pip install --no-cache-dir openmdao && \
pip install --no-cache-dir git+https://github.com/rethore/windIO.git && \
pip install --no-cache-dir git+https://github.com/FUSED-Wind/FUSED-Wake.git
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