From cea9c1d3571b04c57951db1d20b417b3455022ab Mon Sep 17 00:00:00 2001 From: Sameh Mohamed Date: Tue, 5 Feb 2019 10:31:46 -0500 Subject: [PATCH] updated the dev container's installer_ipopt.sh script to add the universe apt repository which is required to install the gfortran package. I opened issue 6735 to track this. --- docker/build/installers/install_ipopt.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/build/installers/install_ipopt.sh b/docker/build/installers/install_ipopt.sh index 6daf17f6d1..0494c7ae48 100755 --- a/docker/build/installers/install_ipopt.sh +++ b/docker/build/installers/install_ipopt.sh @@ -21,6 +21,7 @@ set -e cd "$(dirname "${BASH_SOURCE[0]}")" +add-apt-repository universe && apt-get -y update apt-get install -y libblas-dev liblapack-dev gfortran wget https://www.coin-or.org/download/source/Ipopt/Ipopt-3.12.11.zip -O Ipopt-3.12.11.zip -- GitLab