Skip to content

Commit 1386e20

Browse files
authored
Merge pull request #937 from playermanny2/upgrade-to-jupyterlab-1.1.3
Address updating base notebook to jupyterlab 1.1.3
2 parents 82d1d0b + 1089ae3 commit 1386e20

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

base-notebook/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ RUN conda install --quiet --yes 'tini=0.18.0' && \
104104
RUN conda install --quiet --yes \
105105
'notebook=6.0.0' \
106106
'jupyterhub=1.0.0' \
107-
'jupyterlab=1.0.4' && \
107+
'jupyterlab=1.1.3' && \
108108
conda clean --all -f -y && \
109109
npm cache clean --force && \
110110
jupyter notebook --generate-config && \

pyspark-notebook/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ LABEL maintainer="Jupyter Project <[email protected]>"
88
USER root
99

1010
# Spark dependencies
11-
ENV APACHE_SPARK_VERSION 2.4.3
11+
ENV APACHE_SPARK_VERSION 2.4.4
1212
ENV HADOOP_VERSION 2.7
1313

1414
RUN apt-get -y update && \
@@ -17,7 +17,7 @@ RUN apt-get -y update && \
1717

1818
RUN cd /tmp && \
1919
wget -q http://mirrors.ukfast.co.uk/sites/ftp.apache.org/spark/spark-${APACHE_SPARK_VERSION}/spark-${APACHE_SPARK_VERSION}-bin-hadoop${HADOOP_VERSION}.tgz && \
20-
echo "E8B7F9E1DEC868282CADCAD81599038A22F48FB597D44AF1B13FCC76B7DACD2A1CAF431F95E394E1227066087E3CE6C2137C4ABAF60C60076B78F959074FF2AD *spark-${APACHE_SPARK_VERSION}-bin-hadoop${HADOOP_VERSION}.tgz" | sha512sum -c - && \
20+
echo "2E3A5C853B9F28C7D4525C0ADCB0D971B73AD47D5CCE138C85335B9F53A6519540D3923CB0B5CEE41E386E49AE8A409A51AB7194BA11A254E037A848D0C4A9E5 *spark-${APACHE_SPARK_VERSION}-bin-hadoop${HADOOP_VERSION}.tgz" | sha512sum -c - && \
2121
tar xzf spark-${APACHE_SPARK_VERSION}-bin-hadoop${HADOOP_VERSION}.tgz -C /usr/local --owner root --group root --no-same-owner && \
2222
rm spark-${APACHE_SPARK_VERSION}-bin-hadoop${HADOOP_VERSION}.tgz
2323
RUN cd /usr/local && ln -s spark-${APACHE_SPARK_VERSION}-bin-hadoop${HADOOP_VERSION} spark

0 commit comments

Comments
 (0)