In pre-cmake versions of the code, the Dockerfile had in line 106
RUN sed -i '40s/.*/export F77 = gfortran-'"${GNUCOMPILER}"' --std=legacy/' $ALBUSPATH/Makefile
Unfortunately, the --std=legacy parameter has been removed from the CMake version of the Dockerfile. This causes a system failure when attempting to compile the IRI code (and will probably also cause system failures later in the build), so we do not make significant progress with the compilation. I tried a few fixes, but do not know enough about Docker etc to get things to work. Could someone please have a look at this.
In pre-cmake versions of the code, the Dockerfile had in line 106
RUN sed -i '40s/.*/export F77 = gfortran-'"${GNUCOMPILER}"' --std=legacy/' $ALBUSPATH/Makefile
Unfortunately, the --std=legacy parameter has been removed from the CMake version of the Dockerfile. This causes a system failure when attempting to compile the IRI code (and will probably also cause system failures later in the build), so we do not make significant progress with the compilation. I tried a few fixes, but do not know enough about Docker etc to get things to work. Could someone please have a look at this.