-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
233 lines (177 loc) · 8.16 KB
/
Dockerfile
File metadata and controls
233 lines (177 loc) · 8.16 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
# This Dockerfile enables the construction of a Docker image that includes MATLAB,
# Simulink, Simulink Check, and the CI/CD Support package, all installed via
# the MATLAB Package Manager. Use the optional build arguments to customize the
# version of MATLAB, list of products to install, and the location at which to install MATLAB.
# Here is an example docker build command with the optional build arguments.
# docker build --build-arg MATLAB_RELEASE=2023b
# --build-arg PRODUCTS="MATLAB Simulink Simulink_Check CI/CD_Automation_for_Simulink_Check Simulink_Test"
# --build-arg MATLAB_INSTALL_LOCATION="/opt/matlab/R2023b"
# --build-arg LICENSE_SERVER=12345@hostname.com
# -t my_matlab_image_name .
# To specify which MATLAB release to install in the container, edit the value of the MATLAB_RELEASE argument.
# Use lower case to specify the release, for example: ARG MATLAB_RELEASE=2022b
ARG MATLAB_RELEASE=2023b
# In order to run all the builtin tasks in the default processmodel,
# following products can be added
# -Simulink_Coverage
# -Simulink_Test
# -Simulink_Design_Verifier
# -MATLAB_Coder
# -MATLAB_Report_Generator
# -Simulink_Coder
# -Embedded_Coder
# -Simulink_Report_Generator
# -Requirements_Toolbox
# -Polyspace_Bug_Finder
# In the absence of the above products, respective tasks will be
# automatically disabled
ARG PRODUCTS="MATLAB Simulink Simulink_Check CI/CD_Automation_for_Simulink_Check"
# Specify the host and port of the machine that serves the network licenses,
# if you want to bind in the license info as an environment variable. This
# is the preferred option for licensing. e.g. ARG LICENSE_SERVER = 27000@flexlm-server-name
ARG LICENSE_SERVER=27000@MyServer
# Alternatively you can put a license file into the container.
# You should fill this lic file out with the details of the license
# server you want to use and uncomment the line in STEP - 5.
# Specify MATLAB Install Location.
ARG MATLAB_INSTALL_LOCATION="/opt/matlab/R${MATLAB_RELEASE}"
##########################################################
### Should not need to change anything else down below ###
##########################################################
# STEP - 1
# When you start the build stage, this Dockerfile by default uses the Ubuntu-based matlab-deps image.
# To check the available matlab-deps images, see: https://hub.docker.com/r/mathworks/matlab-deps
FROM mathworks/matlab-deps:r${MATLAB_RELEASE}
# Declare build arguments
ARG MATLAB_RELEASE
ARG PRODUCTS
ARG LICENSE_SERVER
ARG MATLAB_INSTALL_LOCATION
# STEP - 2
# Install mpm dependencies
RUN export DEBIAN_FRONTEND=noninteractive \
&& apt-get update \
&& apt-get install --no-install-recommends --yes \
wget \
unzip \
xvfb \
gcc \
g++ \
ca-certificates \
&& apt-get clean \
&& apt-get autoremove \
&& rm -rf /var/lib/apt/lists/*
# STEP - 3
# Add "matlab" user and grant sudo permission.
RUN adduser --shell /bin/bash --disabled-password --gecos "" matlab \
&& echo "matlab ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/matlab \
&& chmod 0440 /etc/sudoers.d/matlab
# Set user and work directory.
USER matlab
WORKDIR /home/matlab
# STEP - 4
# Run mpm to install "PRODUCTS" in the target location and delete the mpm installation afterwards.
# If mpm fails to install successfully then output the logfile to the terminal, otherwise cleanup.
RUN wget -q https://www.mathworks.com/mpm/glnxa64/mpm \
&& chmod +x mpm \
&& sudo HOME=${HOME} ./mpm install \
--release=r${MATLAB_RELEASE} \
--destination=${MATLAB_INSTALL_LOCATION} \
--products ${PRODUCTS} \
|| (echo "MPM Installation Failure. See below for more information:" && cat /tmp/mathworks_root.log && false) \
&& sudo rm -f mpm /tmp/mathworks_root.log \
&& sudo ln -s ${MATLAB_INSTALL_LOCATION}/bin/matlab /usr/local/bin/matlab
# STEP - 5
ENV MLM_LICENSE_FILE=$LICENSE_SERVER
# COPY network.lic ${MATLAB_INSTALL_LOCATION}/licenses
# Use
# "docker build" command to create an image from this Dockerfile
# "docker run" command to create a container from the generated image# This Dockerfile enables the construction of a Docker image that includes MATLAB,
# Simulink, Simulink Check, and the CI/CD Support package, all installed via
# the MATLAB Package Manager. Use the optional build arguments to customize the
# version of MATLAB, list of products to install, and the location at which to install MATLAB.
# Here is an example docker build command with the optional build arguments.
# docker build --build-arg MATLAB_RELEASE=2023b
# --build-arg PRODUCTS="MATLAB Simulink Simulink_Check CI/CD_Automation_for_Simulink_Check Simulink_Test"
# --build-arg MATLAB_INSTALL_LOCATION="/opt/matlab/R2023b"
# --build-arg LICENSE_SERVER=12345@hostname.com
# -t my_matlab_image_name .
# To specify which MATLAB release to install in the container, edit the value of the MATLAB_RELEASE argument.
# Use lower case to specify the release, for example: ARG MATLAB_RELEASE=2022b
ARG MATLAB_RELEASE=2023b
# In order to run all the builtin tasks in the default processmodel,
# following products can be added
# -Simulink_Coverage
# -Simulink_Test
# -Simulink_Design_Verifier
# -MATLAB_Coder
# -MATLAB_Report_Generator
# -Simulink_Coder
# -Embedded_Coder
# -Simulink_Report_Generator
# -Requirements_Toolbox
# -Polyspace_Bug_Finder
# In the absence of the above products, respective tasks will be
# automatically disabled
ARG PRODUCTS="MATLAB Simulink Simulink_Check CI/CD_Automation_for_Simulink_Check"
# Specify the host and port of the machine that serves the network licenses,
# if you want to bind in the license info as an environment variable. This
# is the preferred option for licensing. e.g. ARG LICENSE_SERVER = 27000@flexlm-server-name
ARG LICENSE_SERVER=27000@MyServer
# Alternatively you can put a license file into the container.
# You should fill this lic file out with the details of the license
# server you want to use and uncomment the line in STEP - 5.
# Specify MATLAB Install Location.
ARG MATLAB_INSTALL_LOCATION="/opt/matlab/R${MATLAB_RELEASE}"
##########################################################
### Should not need to change anything else down below ###
##########################################################
# STEP - 1
# When you start the build stage, this Dockerfile by default uses the Ubuntu-based matlab-deps image.
# To check the available matlab-deps images, see: https://hub.docker.com/r/mathworks/matlab-deps
FROM mathworks/matlab-deps:r${MATLAB_RELEASE}
# Declare build arguments
ARG MATLAB_RELEASE
ARG PRODUCTS
ARG LICENSE_SERVER
ARG MATLAB_INSTALL_LOCATION
# STEP - 2
# Install mpm dependencies
RUN export DEBIAN_FRONTEND=noninteractive \
&& apt-get update \
&& apt-get install --no-install-recommends --yes \
wget \
unzip \
xvfb \
gcc \
g++ \
ca-certificates \
&& apt-get clean \
&& apt-get autoremove \
&& rm -rf /var/lib/apt/lists/*
# STEP - 3
# Add "matlab" user and grant sudo permission.
RUN adduser --shell /bin/bash --disabled-password --gecos "" matlab \
&& echo "matlab ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/matlab \
&& chmod 0440 /etc/sudoers.d/matlab
# Set user and work directory.
USER matlab
WORKDIR /home/matlab
# STEP - 4
# Run mpm to install "PRODUCTS" in the target location and delete the mpm installation afterwards.
# If mpm fails to install successfully then output the logfile to the terminal, otherwise cleanup.
RUN wget -q https://www.mathworks.com/mpm/glnxa64/mpm \
&& chmod +x mpm \
&& sudo HOME=${HOME} ./mpm install \
--release=r${MATLAB_RELEASE} \
--destination=${MATLAB_INSTALL_LOCATION} \
--products ${PRODUCTS} \
|| (echo "MPM Installation Failure. See below for more information:" && cat /tmp/mathworks_root.log && false) \
&& sudo rm -f mpm /tmp/mathworks_root.log \
&& sudo ln -s ${MATLAB_INSTALL_LOCATION}/bin/matlab /usr/local/bin/matlab
# STEP - 5
ENV MLM_LICENSE_FILE=$LICENSE_SERVER
# COPY network.lic ${MATLAB_INSTALL_LOCATION}/licenses
# Use
# "docker build" command to create an image from this Dockerfile
# "docker run" command to create a container from the generated image