├── .github ├── actions │ ├── build-test-and-publish-matlab-deps │ │ └── action.yml │ └── build-test-and-publish-matlab │ │ └── action.yml └── workflows │ ├── README.md │ ├── build-and-publish-matlab-runtime-deps.yml │ ├── build-and-publish-ubi-hardening-extras.yml │ ├── build-test-and-publish-matlab-deps.yml │ ├── build-test-and-publish-matlab.yml │ ├── build-test-and-publish-network-licensing-manager.yml │ ├── build-test-and-publish-single-matlab-deps.yml │ ├── polyspace-deps-r2022b-ubuntu20.04.yml │ ├── polyspace-deps-r2023a-ubuntu20.04.yml │ └── polyspace-deps-r2023b-ubuntu22.04.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── SECURITY.md ├── matlab-deps ├── README.md ├── r2019b │ ├── aws-batch │ │ ├── Dockerfile │ │ ├── base-dependencies.txt │ │ └── stageDataAndRunJob.sh │ ├── ubuntu18.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ └── ubuntu24.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt ├── r2020a │ ├── aws-batch │ │ ├── Dockerfile │ │ ├── base-dependencies.txt │ │ └── stageDataAndRunJob.sh │ ├── ubuntu18.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ └── ubuntu24.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt ├── r2020b │ ├── aws-batch │ │ ├── Dockerfile │ │ ├── base-dependencies.txt │ │ └── stageDataAndRunJob.sh │ ├── ubuntu20.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ └── ubuntu24.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt ├── r2021a │ ├── aws-batch │ │ ├── Dockerfile │ │ ├── base-dependencies.txt │ │ └── stageDataAndRunJob.sh │ ├── ubuntu20.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ └── ubuntu24.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt ├── r2021b │ ├── aws-batch │ │ ├── Dockerfile │ │ ├── base-dependencies.txt │ │ └── stageDataAndRunJob.sh │ ├── ubi8 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ ├── ubuntu20.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ └── ubuntu24.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt ├── r2022a │ ├── aws-batch │ │ ├── Dockerfile │ │ ├── base-dependencies.txt │ │ └── stageDataAndRunJob.sh │ ├── ubi8 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ ├── ubuntu20.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ └── ubuntu24.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt ├── r2022b │ ├── aws-batch │ │ ├── Dockerfile │ │ ├── base-dependencies.txt │ │ └── stageDataAndRunJob.sh │ ├── ubi8 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ ├── ubi9 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ ├── ubuntu20.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ ├── ubuntu22.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ └── ubuntu24.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt ├── r2023a │ ├── aws-batch │ │ ├── Dockerfile │ │ ├── base-dependencies.txt │ │ └── stageDataAndRunJob.sh │ ├── ubi8 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ ├── ubi9 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ ├── ubuntu20.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ ├── ubuntu22.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ └── ubuntu24.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt ├── r2023b │ ├── aws-batch │ │ ├── Dockerfile │ │ ├── base-dependencies.txt │ │ └── stageDataAndRunJob.sh │ ├── ubi8 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ ├── ubi9 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ ├── ubuntu20.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ ├── ubuntu22.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ └── ubuntu24.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt ├── r2024a │ ├── aws-batch │ │ ├── Dockerfile │ │ ├── base-dependencies.txt │ │ └── stageDataAndRunJob.sh │ ├── ubi8 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ ├── ubi9 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ ├── ubuntu20.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ ├── ubuntu22.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ └── ubuntu24.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt ├── r2024b │ ├── aws-batch │ │ ├── Dockerfile │ │ ├── base-dependencies.txt │ │ └── stageDataAndRunJob.sh │ ├── ubi8 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ ├── ubi9 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ ├── ubuntu20.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ ├── ubuntu22.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ └── ubuntu24.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt ├── r2025a │ ├── aws-batch │ │ ├── Dockerfile │ │ ├── base-dependencies.txt │ │ └── stageDataAndRunJob.sh │ ├── ubi8 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ ├── ubi9 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ ├── ubuntu20.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ ├── ubuntu22.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt │ └── ubuntu24.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt └── r2025b │ ├── aws-batch │ ├── Dockerfile │ ├── base-dependencies.txt │ └── stageDataAndRunJob.sh │ ├── ubi8 │ ├── Dockerfile │ └── base-dependencies.txt │ ├── ubi9 │ ├── Dockerfile │ └── base-dependencies.txt │ ├── ubuntu22.04 │ ├── Dockerfile │ └── base-dependencies.txt │ └── ubuntu24.04 │ ├── Dockerfile │ └── base-dependencies.txt ├── matlab-runtime-deps ├── README.md ├── r2023b │ └── ubuntu22.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt ├── r2024a │ └── ubuntu22.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt ├── r2024b │ └── ubuntu24.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt ├── r2025a │ └── ubuntu24.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt └── r2025b │ └── ubuntu24.04 │ ├── Dockerfile │ └── base-dependencies.txt ├── matlab ├── Dockerfile ├── README.md ├── README_DEEP_LEARNING.md ├── build │ ├── config │ │ ├── MATLAB.desktop │ │ ├── localsudo │ │ ├── matlab.prf │ │ ├── matlab_deep_learning │ │ │ └── MNISTExample.mlx │ │ ├── novnc_login_redirect.html │ │ ├── startup.m │ │ ├── xfce4 │ │ │ ├── desktop │ │ │ │ └── icons.screen0.rc │ │ │ ├── panel │ │ │ │ ├── launcher-10 │ │ │ │ │ └── panel-file-manager.desktop │ │ │ │ ├── launcher-12 │ │ │ │ │ └── panel-app-finder.desktop │ │ │ │ └── launcher-9 │ │ │ │ │ └── panel-terminal.desktop │ │ │ └── xfconf │ │ │ │ └── xfce-perchannel-xml │ │ │ │ ├── wallpaper.jpg │ │ │ │ ├── xfce4-desktop.xml │ │ │ │ └── xfce4-panel.xml │ │ ├── xscreensaver │ │ └── xstartup │ ├── readmes │ │ ├── browser_readme │ │ ├── help_readme │ │ ├── vnc_readme │ │ └── welcome_readme │ ├── run.sh │ └── utils.sh ├── docker-bake.hcl └── release-config │ ├── R2023a.env.hcl │ ├── R2023b.env.hcl │ ├── R2024a.env.hcl │ ├── R2024b.env.hcl │ ├── R2025a.env.hcl │ └── R2025b.env.hcl ├── network-license-manager ├── Dockerfile ├── README.md ├── compose.yaml ├── docker-entrypoint.sh ├── licenses │ ├── .gitignore │ └── README.md ├── logs │ └── .gitignore └── tests │ ├── .gitignore │ ├── requirements.txt │ ├── setup_gen_licfile.sh │ ├── test_nlm_image.py │ ├── test_nlm_licensing.py │ └── utils.py ├── polyspace-deps ├── README.md ├── r2022b │ └── ubuntu20.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt ├── r2023a │ └── ubuntu20.04 │ │ ├── Dockerfile │ │ └── base-dependencies.txt └── r2023b │ └── ubuntu22.04 │ ├── Dockerfile │ └── base-dependencies.txt ├── tests ├── .gitignore ├── matlab-deps │ ├── .gitignore │ ├── __init__.py │ ├── test_awsbatch.py │ ├── test_ubi8.py │ ├── test_ubi9.py │ ├── test_ubuntu2204.py │ ├── test_ubuntu2404.py │ └── utils │ │ ├── __init__.py │ │ ├── base.py │ │ ├── release_platform.py │ │ ├── test_ubi.py │ │ └── test_ubuntu.py ├── matlab │ ├── __init__.py │ ├── common_setup.sh │ ├── matlab │ │ ├── AvailableProductsTest.m │ │ ├── __init__.py │ │ ├── run_AvailableProductsTest.py │ │ └── test_ddux.py │ ├── matlab_deep_learning │ │ ├── DeepLearningAddonsTests.m │ │ ├── __init__.py │ │ ├── run_DeepLearningAddonsTests.py │ │ └── test_ddux.py │ ├── run-bats-test.sh │ ├── shared │ │ ├── Startup.m │ │ ├── __init__.py │ │ ├── run_startup.py │ │ ├── test_ddux.py │ │ ├── test_matlab_docker_batch.py │ │ ├── test_matlab_docker_shell.py │ │ ├── test_matlab_docker_vnc.py │ │ ├── test_matlab_proxy_integration.py │ │ └── test_msh_integration.py │ ├── shtools │ │ ├── create_file_with_content.sh │ │ ├── create_mock.sh │ │ ├── create_mock_df.sh │ │ ├── create_mock_license.sh │ │ ├── create_mock_matlab.sh │ │ └── create_mock_vnc_novnc.sh │ ├── tRun.bats │ ├── tUtils.bats │ ├── test_matlab-deep-learning.py │ └── test_matlab.py ├── pytools │ ├── __init__.py │ ├── dockertool.py │ ├── helper.py │ └── test_suite_launcher.py ├── requirements.txt └── tools │ └── gen_license_file.sh └── ubi-hardening-extras ├── README.md ├── almalinux-base ├── Dockerfile └── base-dependencies.txt ├── icewm └── Dockerfile ├── matlab └── Dockerfile ├── novnc └── Dockerfile ├── tests ├── .gitignore ├── icewm │ └── icewm_test.py ├── matlab │ └── matlab_test.py ├── novnc │ └── novnc_test.py ├── requirements.txt ├── tigervnc │ └── tigervnc_test.py ├── utils │ ├── Dockerfile │ ├── Dockerfile.matlab │ ├── Dockerfile.novnc │ └── basetest.py └── xterm │ └── xterm_test.py ├── tigervnc └── Dockerfile ├── workflow ├── extract_metadata.sh ├── extraction.Dockerfile └── increment_version.sh └── xterm └── Dockerfile /.github/actions/build-test-and-publish-matlab-deps/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/.github/actions/build-test-and-publish-matlab-deps/action.yml -------------------------------------------------------------------------------- /.github/actions/build-test-and-publish-matlab/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/.github/actions/build-test-and-publish-matlab/action.yml -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/build-and-publish-matlab-runtime-deps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/.github/workflows/build-and-publish-matlab-runtime-deps.yml -------------------------------------------------------------------------------- /.github/workflows/build-and-publish-ubi-hardening-extras.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/.github/workflows/build-and-publish-ubi-hardening-extras.yml -------------------------------------------------------------------------------- /.github/workflows/build-test-and-publish-matlab-deps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/.github/workflows/build-test-and-publish-matlab-deps.yml -------------------------------------------------------------------------------- /.github/workflows/build-test-and-publish-matlab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/.github/workflows/build-test-and-publish-matlab.yml -------------------------------------------------------------------------------- /.github/workflows/build-test-and-publish-network-licensing-manager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/.github/workflows/build-test-and-publish-network-licensing-manager.yml -------------------------------------------------------------------------------- /.github/workflows/build-test-and-publish-single-matlab-deps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/.github/workflows/build-test-and-publish-single-matlab-deps.yml -------------------------------------------------------------------------------- /.github/workflows/polyspace-deps-r2022b-ubuntu20.04.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/.github/workflows/polyspace-deps-r2022b-ubuntu20.04.yml -------------------------------------------------------------------------------- /.github/workflows/polyspace-deps-r2023a-ubuntu20.04.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/.github/workflows/polyspace-deps-r2023a-ubuntu20.04.yml -------------------------------------------------------------------------------- /.github/workflows/polyspace-deps-r2023b-ubuntu22.04.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/.github/workflows/polyspace-deps-r2023b-ubuntu22.04.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | **/*.pyc 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/SECURITY.md -------------------------------------------------------------------------------- /matlab-deps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/README.md -------------------------------------------------------------------------------- /matlab-deps/r2019b/aws-batch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2019b/aws-batch/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2019b/aws-batch/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2019b/aws-batch/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2019b/aws-batch/stageDataAndRunJob.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2019b/aws-batch/stageDataAndRunJob.sh -------------------------------------------------------------------------------- /matlab-deps/r2019b/ubuntu18.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2019b/ubuntu18.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2019b/ubuntu18.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2019b/ubuntu18.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2019b/ubuntu24.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2019b/ubuntu24.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2019b/ubuntu24.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2019b/ubuntu24.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2020a/aws-batch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2020a/aws-batch/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2020a/aws-batch/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2020a/aws-batch/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2020a/aws-batch/stageDataAndRunJob.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2020a/aws-batch/stageDataAndRunJob.sh -------------------------------------------------------------------------------- /matlab-deps/r2020a/ubuntu18.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2020a/ubuntu18.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2020a/ubuntu18.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2020a/ubuntu18.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2020a/ubuntu24.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2020a/ubuntu24.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2020a/ubuntu24.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2020a/ubuntu24.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2020b/aws-batch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2020b/aws-batch/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2020b/aws-batch/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2020b/aws-batch/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2020b/aws-batch/stageDataAndRunJob.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2020b/aws-batch/stageDataAndRunJob.sh -------------------------------------------------------------------------------- /matlab-deps/r2020b/ubuntu20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2020b/ubuntu20.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2020b/ubuntu20.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2020b/ubuntu20.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2020b/ubuntu24.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2020b/ubuntu24.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2020b/ubuntu24.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2020b/ubuntu24.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2021a/aws-batch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2021a/aws-batch/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2021a/aws-batch/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2021a/aws-batch/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2021a/aws-batch/stageDataAndRunJob.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2021a/aws-batch/stageDataAndRunJob.sh -------------------------------------------------------------------------------- /matlab-deps/r2021a/ubuntu20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2021a/ubuntu20.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2021a/ubuntu20.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2021a/ubuntu20.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2021a/ubuntu24.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2021a/ubuntu24.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2021a/ubuntu24.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2021a/ubuntu24.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2021b/aws-batch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2021b/aws-batch/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2021b/aws-batch/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2021b/aws-batch/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2021b/aws-batch/stageDataAndRunJob.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2021b/aws-batch/stageDataAndRunJob.sh -------------------------------------------------------------------------------- /matlab-deps/r2021b/ubi8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2021b/ubi8/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2021b/ubi8/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2021b/ubi8/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2021b/ubuntu20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2021b/ubuntu20.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2021b/ubuntu20.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2021b/ubuntu20.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2021b/ubuntu24.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2021b/ubuntu24.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2021b/ubuntu24.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2021b/ubuntu24.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2022a/aws-batch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2022a/aws-batch/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2022a/aws-batch/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2022a/aws-batch/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2022a/aws-batch/stageDataAndRunJob.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2022a/aws-batch/stageDataAndRunJob.sh -------------------------------------------------------------------------------- /matlab-deps/r2022a/ubi8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2022a/ubi8/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2022a/ubi8/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2022a/ubi8/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2022a/ubuntu20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2022a/ubuntu20.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2022a/ubuntu20.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2022a/ubuntu20.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2022a/ubuntu24.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2022a/ubuntu24.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2022a/ubuntu24.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2022a/ubuntu24.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2022b/aws-batch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2022b/aws-batch/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2022b/aws-batch/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2022b/aws-batch/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2022b/aws-batch/stageDataAndRunJob.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2022b/aws-batch/stageDataAndRunJob.sh -------------------------------------------------------------------------------- /matlab-deps/r2022b/ubi8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2022b/ubi8/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2022b/ubi8/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2022b/ubi8/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2022b/ubi9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2022b/ubi9/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2022b/ubi9/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2022b/ubi9/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2022b/ubuntu20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2022b/ubuntu20.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2022b/ubuntu20.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2022b/ubuntu20.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2022b/ubuntu22.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2022b/ubuntu22.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2022b/ubuntu22.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2022b/ubuntu22.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2022b/ubuntu24.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2022b/ubuntu24.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2022b/ubuntu24.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2022b/ubuntu24.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2023a/aws-batch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2023a/aws-batch/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2023a/aws-batch/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2023a/aws-batch/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2023a/aws-batch/stageDataAndRunJob.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2023a/aws-batch/stageDataAndRunJob.sh -------------------------------------------------------------------------------- /matlab-deps/r2023a/ubi8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2023a/ubi8/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2023a/ubi8/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2023a/ubi8/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2023a/ubi9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2023a/ubi9/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2023a/ubi9/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2023a/ubi9/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2023a/ubuntu20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2023a/ubuntu20.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2023a/ubuntu20.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2023a/ubuntu20.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2023a/ubuntu22.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2023a/ubuntu22.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2023a/ubuntu22.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2023a/ubuntu22.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2023a/ubuntu24.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2023a/ubuntu24.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2023a/ubuntu24.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2023a/ubuntu24.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2023b/aws-batch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2023b/aws-batch/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2023b/aws-batch/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2023b/aws-batch/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2023b/aws-batch/stageDataAndRunJob.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2023b/aws-batch/stageDataAndRunJob.sh -------------------------------------------------------------------------------- /matlab-deps/r2023b/ubi8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2023b/ubi8/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2023b/ubi8/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2023b/ubi8/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2023b/ubi9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2023b/ubi9/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2023b/ubi9/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2023b/ubi9/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2023b/ubuntu20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2023b/ubuntu20.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2023b/ubuntu20.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2023b/ubuntu20.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2023b/ubuntu22.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2023b/ubuntu22.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2023b/ubuntu22.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2023b/ubuntu22.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2023b/ubuntu24.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2023b/ubuntu24.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2023b/ubuntu24.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2023b/ubuntu24.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2024a/aws-batch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2024a/aws-batch/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2024a/aws-batch/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2024a/aws-batch/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2024a/aws-batch/stageDataAndRunJob.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2024a/aws-batch/stageDataAndRunJob.sh -------------------------------------------------------------------------------- /matlab-deps/r2024a/ubi8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2024a/ubi8/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2024a/ubi8/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2024a/ubi8/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2024a/ubi9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2024a/ubi9/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2024a/ubi9/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2024a/ubi9/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2024a/ubuntu20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2024a/ubuntu20.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2024a/ubuntu20.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2024a/ubuntu20.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2024a/ubuntu22.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2024a/ubuntu22.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2024a/ubuntu22.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2024a/ubuntu22.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2024a/ubuntu24.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2024a/ubuntu24.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2024a/ubuntu24.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2024a/ubuntu24.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2024b/aws-batch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2024b/aws-batch/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2024b/aws-batch/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2024b/aws-batch/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2024b/aws-batch/stageDataAndRunJob.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2024b/aws-batch/stageDataAndRunJob.sh -------------------------------------------------------------------------------- /matlab-deps/r2024b/ubi8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2024b/ubi8/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2024b/ubi8/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2024b/ubi8/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2024b/ubi9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2024b/ubi9/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2024b/ubi9/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2024b/ubi9/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2024b/ubuntu20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2024b/ubuntu20.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2024b/ubuntu20.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2024b/ubuntu20.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2024b/ubuntu22.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2024b/ubuntu22.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2024b/ubuntu22.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2024b/ubuntu22.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2024b/ubuntu24.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2024b/ubuntu24.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2024b/ubuntu24.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2024b/ubuntu24.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2025a/aws-batch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2025a/aws-batch/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2025a/aws-batch/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2025a/aws-batch/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2025a/aws-batch/stageDataAndRunJob.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2025a/aws-batch/stageDataAndRunJob.sh -------------------------------------------------------------------------------- /matlab-deps/r2025a/ubi8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2025a/ubi8/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2025a/ubi8/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2025a/ubi8/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2025a/ubi9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2025a/ubi9/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2025a/ubi9/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2025a/ubi9/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2025a/ubuntu20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2025a/ubuntu20.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2025a/ubuntu20.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2025a/ubuntu20.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2025a/ubuntu22.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2025a/ubuntu22.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2025a/ubuntu22.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2025a/ubuntu22.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2025a/ubuntu24.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2025a/ubuntu24.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2025a/ubuntu24.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2025a/ubuntu24.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2025b/aws-batch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2025b/aws-batch/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2025b/aws-batch/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2025b/aws-batch/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2025b/aws-batch/stageDataAndRunJob.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2025b/aws-batch/stageDataAndRunJob.sh -------------------------------------------------------------------------------- /matlab-deps/r2025b/ubi8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2025b/ubi8/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2025b/ubi8/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2025b/ubi8/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2025b/ubi9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2025b/ubi9/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2025b/ubi9/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2025b/ubi9/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2025b/ubuntu22.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2025b/ubuntu22.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2025b/ubuntu22.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2025b/ubuntu22.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-deps/r2025b/ubuntu24.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2025b/ubuntu24.04/Dockerfile -------------------------------------------------------------------------------- /matlab-deps/r2025b/ubuntu24.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-deps/r2025b/ubuntu24.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-runtime-deps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-runtime-deps/README.md -------------------------------------------------------------------------------- /matlab-runtime-deps/r2023b/ubuntu22.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-runtime-deps/r2023b/ubuntu22.04/Dockerfile -------------------------------------------------------------------------------- /matlab-runtime-deps/r2023b/ubuntu22.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-runtime-deps/r2023b/ubuntu22.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-runtime-deps/r2024a/ubuntu22.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-runtime-deps/r2024a/ubuntu22.04/Dockerfile -------------------------------------------------------------------------------- /matlab-runtime-deps/r2024a/ubuntu22.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-runtime-deps/r2024a/ubuntu22.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-runtime-deps/r2024b/ubuntu24.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-runtime-deps/r2024b/ubuntu24.04/Dockerfile -------------------------------------------------------------------------------- /matlab-runtime-deps/r2024b/ubuntu24.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-runtime-deps/r2024b/ubuntu24.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-runtime-deps/r2025a/ubuntu24.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-runtime-deps/r2025a/ubuntu24.04/Dockerfile -------------------------------------------------------------------------------- /matlab-runtime-deps/r2025a/ubuntu24.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-runtime-deps/r2025a/ubuntu24.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab-runtime-deps/r2025b/ubuntu24.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-runtime-deps/r2025b/ubuntu24.04/Dockerfile -------------------------------------------------------------------------------- /matlab-runtime-deps/r2025b/ubuntu24.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab-runtime-deps/r2025b/ubuntu24.04/base-dependencies.txt -------------------------------------------------------------------------------- /matlab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/Dockerfile -------------------------------------------------------------------------------- /matlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/README.md -------------------------------------------------------------------------------- /matlab/README_DEEP_LEARNING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/README_DEEP_LEARNING.md -------------------------------------------------------------------------------- /matlab/build/config/MATLAB.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/build/config/MATLAB.desktop -------------------------------------------------------------------------------- /matlab/build/config/localsudo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/build/config/localsudo -------------------------------------------------------------------------------- /matlab/build/config/matlab.prf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/build/config/matlab.prf -------------------------------------------------------------------------------- /matlab/build/config/matlab_deep_learning/MNISTExample.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/build/config/matlab_deep_learning/MNISTExample.mlx -------------------------------------------------------------------------------- /matlab/build/config/novnc_login_redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/build/config/novnc_login_redirect.html -------------------------------------------------------------------------------- /matlab/build/config/startup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/build/config/startup.m -------------------------------------------------------------------------------- /matlab/build/config/xfce4/desktop/icons.screen0.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/build/config/xfce4/desktop/icons.screen0.rc -------------------------------------------------------------------------------- /matlab/build/config/xfce4/panel/launcher-10/panel-file-manager.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/build/config/xfce4/panel/launcher-10/panel-file-manager.desktop -------------------------------------------------------------------------------- /matlab/build/config/xfce4/panel/launcher-12/panel-app-finder.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/build/config/xfce4/panel/launcher-12/panel-app-finder.desktop -------------------------------------------------------------------------------- /matlab/build/config/xfce4/panel/launcher-9/panel-terminal.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/build/config/xfce4/panel/launcher-9/panel-terminal.desktop -------------------------------------------------------------------------------- /matlab/build/config/xfce4/xfconf/xfce-perchannel-xml/wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/build/config/xfce4/xfconf/xfce-perchannel-xml/wallpaper.jpg -------------------------------------------------------------------------------- /matlab/build/config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/build/config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml -------------------------------------------------------------------------------- /matlab/build/config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/build/config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml -------------------------------------------------------------------------------- /matlab/build/config/xscreensaver: -------------------------------------------------------------------------------- 1 | mode: off 2 | 3 | -------------------------------------------------------------------------------- /matlab/build/config/xstartup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/build/config/xstartup -------------------------------------------------------------------------------- /matlab/build/readmes/browser_readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/build/readmes/browser_readme -------------------------------------------------------------------------------- /matlab/build/readmes/help_readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/build/readmes/help_readme -------------------------------------------------------------------------------- /matlab/build/readmes/vnc_readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/build/readmes/vnc_readme -------------------------------------------------------------------------------- /matlab/build/readmes/welcome_readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/build/readmes/welcome_readme -------------------------------------------------------------------------------- /matlab/build/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/build/run.sh -------------------------------------------------------------------------------- /matlab/build/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/build/utils.sh -------------------------------------------------------------------------------- /matlab/docker-bake.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/docker-bake.hcl -------------------------------------------------------------------------------- /matlab/release-config/R2023a.env.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/release-config/R2023a.env.hcl -------------------------------------------------------------------------------- /matlab/release-config/R2023b.env.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/release-config/R2023b.env.hcl -------------------------------------------------------------------------------- /matlab/release-config/R2024a.env.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/release-config/R2024a.env.hcl -------------------------------------------------------------------------------- /matlab/release-config/R2024b.env.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/release-config/R2024b.env.hcl -------------------------------------------------------------------------------- /matlab/release-config/R2025a.env.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/release-config/R2025a.env.hcl -------------------------------------------------------------------------------- /matlab/release-config/R2025b.env.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/matlab/release-config/R2025b.env.hcl -------------------------------------------------------------------------------- /network-license-manager/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/network-license-manager/Dockerfile -------------------------------------------------------------------------------- /network-license-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/network-license-manager/README.md -------------------------------------------------------------------------------- /network-license-manager/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/network-license-manager/compose.yaml -------------------------------------------------------------------------------- /network-license-manager/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/network-license-manager/docker-entrypoint.sh -------------------------------------------------------------------------------- /network-license-manager/licenses/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !README.md 4 | -------------------------------------------------------------------------------- /network-license-manager/licenses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/network-license-manager/licenses/README.md -------------------------------------------------------------------------------- /network-license-manager/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /network-license-manager/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/network-license-manager/tests/.gitignore -------------------------------------------------------------------------------- /network-license-manager/tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/network-license-manager/tests/requirements.txt -------------------------------------------------------------------------------- /network-license-manager/tests/setup_gen_licfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/network-license-manager/tests/setup_gen_licfile.sh -------------------------------------------------------------------------------- /network-license-manager/tests/test_nlm_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/network-license-manager/tests/test_nlm_image.py -------------------------------------------------------------------------------- /network-license-manager/tests/test_nlm_licensing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/network-license-manager/tests/test_nlm_licensing.py -------------------------------------------------------------------------------- /network-license-manager/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/network-license-manager/tests/utils.py -------------------------------------------------------------------------------- /polyspace-deps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/polyspace-deps/README.md -------------------------------------------------------------------------------- /polyspace-deps/r2022b/ubuntu20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/polyspace-deps/r2022b/ubuntu20.04/Dockerfile -------------------------------------------------------------------------------- /polyspace-deps/r2022b/ubuntu20.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/polyspace-deps/r2022b/ubuntu20.04/base-dependencies.txt -------------------------------------------------------------------------------- /polyspace-deps/r2023a/ubuntu20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/polyspace-deps/r2023a/ubuntu20.04/Dockerfile -------------------------------------------------------------------------------- /polyspace-deps/r2023a/ubuntu20.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/polyspace-deps/r2023a/ubuntu20.04/base-dependencies.txt -------------------------------------------------------------------------------- /polyspace-deps/r2023b/ubuntu22.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/polyspace-deps/r2023b/ubuntu22.04/Dockerfile -------------------------------------------------------------------------------- /polyspace-deps/r2023b/ubuntu22.04/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/polyspace-deps/r2023b/ubuntu22.04/base-dependencies.txt -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/matlab-deps/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .vscode/ 3 | -------------------------------------------------------------------------------- /tests/matlab-deps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/matlab-deps/test_awsbatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab-deps/test_awsbatch.py -------------------------------------------------------------------------------- /tests/matlab-deps/test_ubi8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab-deps/test_ubi8.py -------------------------------------------------------------------------------- /tests/matlab-deps/test_ubi9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab-deps/test_ubi9.py -------------------------------------------------------------------------------- /tests/matlab-deps/test_ubuntu2204.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab-deps/test_ubuntu2204.py -------------------------------------------------------------------------------- /tests/matlab-deps/test_ubuntu2404.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab-deps/test_ubuntu2404.py -------------------------------------------------------------------------------- /tests/matlab-deps/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/matlab-deps/utils/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab-deps/utils/base.py -------------------------------------------------------------------------------- /tests/matlab-deps/utils/release_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab-deps/utils/release_platform.py -------------------------------------------------------------------------------- /tests/matlab-deps/utils/test_ubi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab-deps/utils/test_ubi.py -------------------------------------------------------------------------------- /tests/matlab-deps/utils/test_ubuntu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab-deps/utils/test_ubuntu.py -------------------------------------------------------------------------------- /tests/matlab/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/matlab/common_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab/common_setup.sh -------------------------------------------------------------------------------- /tests/matlab/matlab/AvailableProductsTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab/matlab/AvailableProductsTest.m -------------------------------------------------------------------------------- /tests/matlab/matlab/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/matlab/matlab/run_AvailableProductsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab/matlab/run_AvailableProductsTest.py -------------------------------------------------------------------------------- /tests/matlab/matlab/test_ddux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab/matlab/test_ddux.py -------------------------------------------------------------------------------- /tests/matlab/matlab_deep_learning/DeepLearningAddonsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab/matlab_deep_learning/DeepLearningAddonsTests.m -------------------------------------------------------------------------------- /tests/matlab/matlab_deep_learning/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/matlab/matlab_deep_learning/run_DeepLearningAddonsTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab/matlab_deep_learning/run_DeepLearningAddonsTests.py -------------------------------------------------------------------------------- /tests/matlab/matlab_deep_learning/test_ddux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab/matlab_deep_learning/test_ddux.py -------------------------------------------------------------------------------- /tests/matlab/run-bats-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab/run-bats-test.sh -------------------------------------------------------------------------------- /tests/matlab/shared/Startup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab/shared/Startup.m -------------------------------------------------------------------------------- /tests/matlab/shared/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/matlab/shared/run_startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab/shared/run_startup.py -------------------------------------------------------------------------------- /tests/matlab/shared/test_ddux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab/shared/test_ddux.py -------------------------------------------------------------------------------- /tests/matlab/shared/test_matlab_docker_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab/shared/test_matlab_docker_batch.py -------------------------------------------------------------------------------- /tests/matlab/shared/test_matlab_docker_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab/shared/test_matlab_docker_shell.py -------------------------------------------------------------------------------- /tests/matlab/shared/test_matlab_docker_vnc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab/shared/test_matlab_docker_vnc.py -------------------------------------------------------------------------------- /tests/matlab/shared/test_matlab_proxy_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab/shared/test_matlab_proxy_integration.py -------------------------------------------------------------------------------- /tests/matlab/shared/test_msh_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab/shared/test_msh_integration.py -------------------------------------------------------------------------------- /tests/matlab/shtools/create_file_with_content.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab/shtools/create_file_with_content.sh -------------------------------------------------------------------------------- /tests/matlab/shtools/create_mock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab/shtools/create_mock.sh -------------------------------------------------------------------------------- /tests/matlab/shtools/create_mock_df.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab/shtools/create_mock_df.sh -------------------------------------------------------------------------------- /tests/matlab/shtools/create_mock_license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab/shtools/create_mock_license.sh -------------------------------------------------------------------------------- /tests/matlab/shtools/create_mock_matlab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab/shtools/create_mock_matlab.sh -------------------------------------------------------------------------------- /tests/matlab/shtools/create_mock_vnc_novnc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab/shtools/create_mock_vnc_novnc.sh -------------------------------------------------------------------------------- /tests/matlab/tRun.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab/tRun.bats -------------------------------------------------------------------------------- /tests/matlab/tUtils.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab/tUtils.bats -------------------------------------------------------------------------------- /tests/matlab/test_matlab-deep-learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab/test_matlab-deep-learning.py -------------------------------------------------------------------------------- /tests/matlab/test_matlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/matlab/test_matlab.py -------------------------------------------------------------------------------- /tests/pytools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pytools/dockertool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/pytools/dockertool.py -------------------------------------------------------------------------------- /tests/pytools/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/pytools/helper.py -------------------------------------------------------------------------------- /tests/pytools/test_suite_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/pytools/test_suite_launcher.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/tools/gen_license_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/tests/tools/gen_license_file.sh -------------------------------------------------------------------------------- /ubi-hardening-extras/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/ubi-hardening-extras/README.md -------------------------------------------------------------------------------- /ubi-hardening-extras/almalinux-base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/ubi-hardening-extras/almalinux-base/Dockerfile -------------------------------------------------------------------------------- /ubi-hardening-extras/almalinux-base/base-dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/ubi-hardening-extras/almalinux-base/base-dependencies.txt -------------------------------------------------------------------------------- /ubi-hardening-extras/icewm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/ubi-hardening-extras/icewm/Dockerfile -------------------------------------------------------------------------------- /ubi-hardening-extras/matlab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/ubi-hardening-extras/matlab/Dockerfile -------------------------------------------------------------------------------- /ubi-hardening-extras/novnc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/ubi-hardening-extras/novnc/Dockerfile -------------------------------------------------------------------------------- /ubi-hardening-extras/tests/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /ubi-hardening-extras/tests/icewm/icewm_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/ubi-hardening-extras/tests/icewm/icewm_test.py -------------------------------------------------------------------------------- /ubi-hardening-extras/tests/matlab/matlab_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/ubi-hardening-extras/tests/matlab/matlab_test.py -------------------------------------------------------------------------------- /ubi-hardening-extras/tests/novnc/novnc_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/ubi-hardening-extras/tests/novnc/novnc_test.py -------------------------------------------------------------------------------- /ubi-hardening-extras/tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/ubi-hardening-extras/tests/requirements.txt -------------------------------------------------------------------------------- /ubi-hardening-extras/tests/tigervnc/tigervnc_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/ubi-hardening-extras/tests/tigervnc/tigervnc_test.py -------------------------------------------------------------------------------- /ubi-hardening-extras/tests/utils/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/ubi-hardening-extras/tests/utils/Dockerfile -------------------------------------------------------------------------------- /ubi-hardening-extras/tests/utils/Dockerfile.matlab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/ubi-hardening-extras/tests/utils/Dockerfile.matlab -------------------------------------------------------------------------------- /ubi-hardening-extras/tests/utils/Dockerfile.novnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/ubi-hardening-extras/tests/utils/Dockerfile.novnc -------------------------------------------------------------------------------- /ubi-hardening-extras/tests/utils/basetest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/ubi-hardening-extras/tests/utils/basetest.py -------------------------------------------------------------------------------- /ubi-hardening-extras/tests/xterm/xterm_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/ubi-hardening-extras/tests/xterm/xterm_test.py -------------------------------------------------------------------------------- /ubi-hardening-extras/tigervnc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/ubi-hardening-extras/tigervnc/Dockerfile -------------------------------------------------------------------------------- /ubi-hardening-extras/workflow/extract_metadata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/ubi-hardening-extras/workflow/extract_metadata.sh -------------------------------------------------------------------------------- /ubi-hardening-extras/workflow/extraction.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/ubi-hardening-extras/workflow/extraction.Dockerfile -------------------------------------------------------------------------------- /ubi-hardening-extras/workflow/increment_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/ubi-hardening-extras/workflow/increment_version.sh -------------------------------------------------------------------------------- /ubi-hardening-extras/xterm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks-ref-arch/container-images/HEAD/ubi-hardening-extras/xterm/Dockerfile --------------------------------------------------------------------------------