Skip to content
Snippets Groups Projects
Commit 32744c88 authored by Jennifer Rinker's avatar Jennifer Rinker
Browse files

adding simpledocker files

parent ed0db26c
No related branches found
No related tags found
1 merge request!4CI with autotest/docs
# ==================================================================
# Creating a simple docker image for TOPFARM testing and docs
# ==================================================================
# set the base image
FROM continuumio/anaconda3:latest
# define the maintainer
MAINTAINER Jennifer Rinker <rink@dtu.dk>
# update the application repository list
RUN apt-get update \
&& apt-get install -y \
build-essential \
gcc \
gfortran
# create an "install" directory and make it the working directory
RUN mkdir /install
WORKDIR /install
# copy reqs file to /install and install everything
COPY ./requirements_simple.txt /install
RUN pip install --upgrade pip \
&& pip install -r /install/requirements_simple.txt
# WindIO for ???
-e git+https://github.com/FUSED-Wind/windIO.git#egg=windio
# OpenMDAO for optimization
-e git+https://github.com/OpenMDAO/OpenMDAO.git#egg=openmdao
# sphinx read-the-docs theme for documentation
sphinx_rtd_theme
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