-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Docker related files for Octave 8.3 and 8.4.
- Loading branch information
Showing
4 changed files
with
8 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
# Builds a Docker image for Octave with IPOPT, OSQP, SDTP3, SeDuMi and | ||
# YALMIP pre-installed. Use --build-arg VER=x.y.z for a | ||
# specific version of Octave (default is 6.4.0). | ||
# specific version of Octave (default is 8.4.0). | ||
# | ||
# docker build -f docker/Dockerfile-octave -t matpower/matpower:latest . | ||
# docker build --build-arg VER=6.4.0 -f docker/Dockerfile-octave -t matpower/octave:6.4.0 . | ||
# docker build --build-arg VER=8.4.0 -f docker/Dockerfile-octave -t matpower/octave:8.4.0 . | ||
# | ||
# Authors: | ||
# Xiangmin Jiao <[email protected]> | ||
# Ray Zimmerman <[email protected]> | ||
|
||
ARG VER=7.3.0 | ||
ARG VER=8.4.0 | ||
ARG SKIP_IPOPT=0 | ||
ARG SKIP_OSQP=0 | ||
FROM gnuoctave/octave:${VER} AS base | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters