From 2a444459a11df9f821caa15b9c55124185b69a9b Mon Sep 17 00:00:00 2001 From: Ray Zimmerman Date: Thu, 13 Jun 2024 17:58:30 -0600 Subject: [PATCH] Fix Dockerfile-octave so it will build linux/amd64 on Apple Silicon Docker. --- docker/Dockerfile-octave | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile-octave b/docker/Dockerfile-octave index 3efbd741..8076390c 100644 --- a/docker/Dockerfile-octave +++ b/docker/Dockerfile-octave @@ -77,11 +77,11 @@ ONBUILD ARG SKIP_OSQP # Install latest Ipopt from source ONBUILD RUN mkdir -p coinbrew && \ cd coinbrew && \ - wget https://raw.githubusercontent.com/coin-or/coinbrew/v1.0/coinbrew && \ + wget https://raw.githubusercontent.com/coin-or/coinbrew/master/coinbrew && \ chmod a+x coinbrew && \ export with_lapack_lflags="-lopenblas" && \ ./coinbrew fetch Ipopt --no-prompt && \ - ./coinbrew build Ipopt --prefix /usr --tests all --with-intsize=64 --no-prompt && \ + ./coinbrew build Ipopt --prefix /usr --tests all --with-intsize=64 --no-prompt --disable-java && \ cd .. && \ rm -rf coinbrew # Install mexIPOPT