-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates to repository for MATLAB R2024a.
- Loading branch information
1 parent
a26fd31
commit 31b2d96
Showing
12 changed files
with
57 additions
and
57 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
# Copyright 2019 - 2023 The MathWorks, Inc. | ||
# Copyright 2019 - 2024 The MathWorks, Inc. | ||
# This Dockerfile allows you to build a Docker® image with MATLAB® installed using the MATLAB Package | ||
# Manager. Use the optional build arguments to customize the version of MATLAB, list of products to | ||
# install, and the location at which to install MATLAB. | ||
|
||
# Here is an example docker build command with the optional build arguments. | ||
# docker build --build-arg MATLAB_RELEASE=r2023b | ||
# docker build --build-arg MATLAB_RELEASE=r2024a | ||
# --build-arg MATLAB_PRODUCT_LIST="MATLAB Deep_Learning_Toolbox Symbolic_Math_Toolbox" | ||
# --build-arg MATLAB_INSTALL_LOCATION="/opt/matlab/R2023b" | ||
# --build-arg MATLAB_INSTALL_LOCATION="/opt/matlab/R2024a" | ||
# --build-arg [email protected] | ||
# -t my_matlab_image_name . | ||
|
||
# To specify which MATLAB release to install in the container, edit the value of the MATLAB_RELEASE argument. | ||
# Use lowercase to specify the release, for example: ARG MATLAB_RELEASE=r2021b | ||
ARG MATLAB_RELEASE=r2023b | ||
ARG MATLAB_RELEASE=r2024a | ||
|
||
# Specify the list of products to install into MATLAB. | ||
ARG MATLAB_PRODUCT_LIST="MATLAB" | ||
|
@@ -63,7 +63,7 @@ RUN wget -q https://www.mathworks.com/mpm/glnxa64/mpm \ | |
--destination=${MATLAB_INSTALL_LOCATION} \ | ||
--products ${MATLAB_PRODUCT_LIST} \ | ||
|| (echo "MPM Installation Failure. See below for more information:" && cat /tmp/mathworks_root.log && false) \ | ||
&& sudo rm -f mpm /tmp/mathworks_root.log \ | ||
&& sudo rm -rf mpm /tmp/mathworks_root.log ${HOME}/.MathWorks \ | ||
&& sudo ln -s ${MATLAB_INSTALL_LOCATION}/bin/matlab /usr/local/bin/matlab | ||
|
||
# Note: Uncomment one of the following two ways to configure the license server. | ||
|
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
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
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
Oops, something went wrong.