-
Notifications
You must be signed in to change notification settings - Fork 12
/
Dockerfile
36 lines (31 loc) · 1.46 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# MATLAB Compiler Runtime (MCR) v9.8 (R2020a)
#
# This docker file will configure an environment into which the Matlab compiler
# runtime will be installed and in which stand-alone matlab routines (such as
# those created with MATLAB's deploytool) can be executed.
# MATLAB Runtime
# Run compiled MATLAB applications or components without installing MATLAB
# The MATLAB Runtime is a standalone set of shared libraries that enables the
# execution of compiled MATLAB applications or components. When used together,
# MATLAB, MATLAB Compiler, and the MATLAB Runtime enable you to create and distribute
# numerical applications or software components quickly and securely.
#
# See https://www.mathworks.com/products/compiler/matlab-runtime.html for more info.
#
# MeshLab
# the open source system for processing and editing 3D triangular meshes.
# It provides a set of tools for editing, cleaning, healing, inspecting, rendering,
# texturing and converting meshes. It offers features for processing raw data produced by
# 3D digitization tools/devices and for preparing models for 3D printing.
#
# @author Riccardo De Martis
# @creation 2023-May-11
# @link https://github.com/demartis/matlab_runtime_docker
#
FROM demartis/matlab-runtime:R2020a
MAINTAINER Riccardo De Martis <[email protected]>
RUN apt-get -q update && \
apt-get install -q -y --no-install-recommends \
meshlab && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*