Skip to content

Commit fa4c662

Browse files
michaelmcdonnellmwPrabhakar Kumar
authored and
Prabhakar Kumar
committed
Removes Unzip as a required mpm dependency.
1 parent 643e650 commit fa4c662

File tree

4 files changed

+2
-5
lines changed

4 files changed

+2
-5
lines changed

Dockerfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2019 - 2024 The MathWorks, Inc.
1+
# Copyright 2019-2024 The MathWorks, Inc.
22
# This Dockerfile allows you to build a Docker® image with MATLAB® installed using the MATLAB Package
33
# Manager. Use the optional build arguments to customize the version of MATLAB, list of products to
44
# install, and the location at which to install MATLAB.
@@ -38,7 +38,6 @@ RUN export DEBIAN_FRONTEND=noninteractive \
3838
&& apt-get update \
3939
&& apt-get install --no-install-recommends --yes \
4040
wget \
41-
unzip \
4241
ca-certificates \
4342
&& apt-get clean \
4443
&& apt-get autoremove \

MPM.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ To get started:
1111
## Download MATLAB Package Manager
1212
### Linux
1313
Verify that this required software is installed:
14-
* All third-party packages required to run the `mpm` command: `unzip`, `ca-certificates`
14+
* All third-party packages required to run the `mpm` command: `ca-certificates`
1515
* All MATLAB dependencies. To view the list of dependencies, in the [MATLAB Dependencies](https://github.com/mathworks-ref-arch/container-images/tree/master/matlab-deps) repository, open the `<release>/<system>/base-dependencies.txt` file for your MATLAB release and operating system.
1616

1717
From a Linux terminal, use `wget` to download the latest version of `mpm`.

alternates/building-on-matlab-docker-image/Dockerfile

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ RUN export DEBIAN_FRONTEND=noninteractive \
2323
&& apt-get update \
2424
&& apt-get install --no-install-recommends --yes \
2525
wget \
26-
unzip \
2726
ca-certificates \
2827
&& apt-get clean \
2928
&& apt-get autoremove \

alternates/non-interactive/Dockerfile

-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ RUN export DEBIAN_FRONTEND=noninteractive \
3333
&& apt-get update \
3434
&& apt-get install --no-install-recommends --yes \
3535
wget \
36-
unzip \
3736
ca-certificates \
3837
&& apt-get clean \
3938
&& apt-get autoremove \

0 commit comments

Comments
 (0)