Closed MacroUniverse closed 1 year ago
You can verify this by adding RUN g++ --version
after line 7 that it's not using version 9, but the default version of Centos7.9.2009.
Thanks for your effort! And how about making a git pull request? It is really beneficial for me.
Done, please review.
Thank you very much MacroUniverse! https://github.com/nakatamaho/mplapack/pull/65 closing
Hello, in Dockerfile_CentOS7_amd64 line 7
scl
command has no effect since it only works on the current RUN command. To properly do this, I think you should useSHELL [ "scl", "enable", "devtoolset-9" ]
instead. That will set the proper shell for every RUN command after.