diff --git a/docker/Dockerfile-octave b/docker/Dockerfile-octave index 8076390c..f5f5d293 100644 --- a/docker/Dockerfile-octave +++ b/docker/Dockerfile-octave @@ -9,7 +9,7 @@ # Xiangmin Jiao # Ray Zimmerman -ARG VER=9.1.0 +ARG VER=9.2.0 ARG SKIP_IPOPT=0 ARG SKIP_OSQP=0 FROM gnuoctave/octave:${VER} AS base diff --git a/docker/MATPOWER-Docker.md b/docker/MATPOWER-Docker.md index c782da17..d4daf7e1 100644 --- a/docker/MATPOWER-Docker.md +++ b/docker/MATPOWER-Docker.md @@ -89,7 +89,7 @@ Versions Several images are available with different combinations of [MATPOWER][1] and [GNU Octave][8] versions, with the following tags and naming conventions. Here _current release_ means the most recent -numbered release (currently 8.0 for [MATPOWER][1], and 9.1.0 for +numbered release (currently 8.0 for [MATPOWER][1], and 9.2.0 for [Octave][8]) and _latest_ `master` refers to the most recent build from the `master` branch of the [MATPOWER][5] and [MATPOWER Extras][6] GitHub repositories. diff --git a/docker/build_octave_images.sh b/docker/build_octave_images.sh index 07864d7b..d64a568f 100755 --- a/docker/build_octave_images.sh +++ b/docker/build_octave_images.sh @@ -24,8 +24,9 @@ docker build --build-arg VER=7.3.0 --platform=linux/amd64 -f docker/Dockerfile-o docker build --build-arg VER=8.3.0 --platform=linux/amd64 -f docker/Dockerfile-octave -t matpower/octave:8.3.0 . docker build --build-arg VER=8.4.0 --platform=linux/amd64 -f docker/Dockerfile-octave -t matpower/octave:8.4.0 . docker build --build-arg VER=9.1.0 --platform=linux/amd64 -f docker/Dockerfile-octave -t matpower/octave:9.1.0 . +docker build --build-arg VER=9.2.0 --platform=linux/amd64 -f docker/Dockerfile-octave -t matpower/octave:9.2.0 . # docker build -f docker/Dockerfile-octave -t matpower/octave:latest . -docker tag matpower/octave:9.1.0 matpower/octave:latest +docker tag matpower/octave:9.2.0 matpower/octave:latest # for debugging, may want to try: # DOCKER_BUILDKIT=0 docker build ...