Skip to content

Commit 0207ebc

Browse files
committed
Update Dockerfiles to use v0.2.0 of jupyter-matlab-proxy
1 parent a0e3910 commit 0207ebc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

matlab/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
# Argument shared across multi-stage build to hold location of installed MATLAB
44
ARG BASE_ML_INSTALL_LOC=/tmp/matlab-install-location
55

6-
# Replace "matlab" with the Docker image that contains MATLAB
6+
# Replace "mathworks/matlab" with any Docker image that contains MATLAB
77
# MATLAB should be available on the path in the Docker image
8-
FROM matlab AS matlab-install-stage
8+
FROM mathworks/matlab AS matlab-install-stage
99
ARG BASE_ML_INSTALL_LOC
1010

1111
# Run code to locate a MATLAB install in the base image and softlink
@@ -98,7 +98,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && apt-get update && apt-get install -
9898
USER $NB_USER
9999

100100
# Install integration
101-
RUN python -m pip install https://github.com/mathworks/jupyter-matlab-proxy/archive/0.1.0.tar.gz
101+
RUN python -m pip install https://github.com/mathworks/jupyter-matlab-proxy/archive/v0.2.0.tar.gz
102102

103103
# Ensure jupyter-server-proxy JupyterLab extension is installed
104104
RUN jupyter labextension install @jupyterlab/server-proxy

matlab/Dockerfile.mounted

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && apt-get update && apt-get install -
7373
USER $NB_USER
7474

7575
# Install integration
76-
RUN python -m pip install https://github.com/mathworks/jupyter-matlab-proxy/archive/0.1.0.tar.gz
76+
RUN python -m pip install https://github.com/mathworks/jupyter-matlab-proxy/archive/v0.2.0.tar.gz
7777

7878
# Ensure jupyter-server-proxy JupyterLab extension is installed
7979
RUN jupyter labextension install @jupyterlab/server-proxy

0 commit comments

Comments
 (0)