File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ RUN pip install \
31
31
geopandas \
32
32
folium \
33
33
ipyleaflet \
34
+ nbclassic==0.2.8 \
34
35
nbgitpuller && \
35
36
jupyter serverextension enable --py nbresuse --sys-prefix && \
36
37
jupyter nbextension install --py nbresuse --sys-prefix && \
Original file line number Diff line number Diff line change 1
1
ARG BASE_CONTAINER=jupyter/r-notebook:hub-1.3.0
2
2
FROM $BASE_CONTAINER
3
3
4
- RUN pip install jupyter-rsession-proxy
4
+ RUN pip install jupyter-rsession-proxy nbgitpuller
5
5
RUN conda install -y -c r r-tidyverse
6
6
7
7
# install rstudio-server
8
8
# Note: 1.4x & 1.3x have problems with proxying and auth flow, see: https://github.com/jupyterhub/jupyter-rsession-proxy/issues/97
9
9
USER root
10
+
11
+ # WAS: https://download2.rstudio.org/server/trusty/amd64/rstudio-server-1.2.5042-amd64.deb [f6d212f2fdc1e1b4e605256a91b69fed6b61c046374934d262b2c3f1e234c0d6]
12
+ # REMOVED: curl --silent -L --fail http://security.ubuntu.com/ubuntu/pool/main/o/openssl1.0/libssl1.0.0_1.0.2n-1ubuntu5.6_amd64.deb > /tmp/libssl.deb && \
13
+ # apt-get install -y /tmp/libssl.deb && \
14
+ # rm /tmp/libssl.deb && \
15
+
10
16
RUN apt-get update && \
11
17
apt-get install gdebi-core -y && \
12
- curl --silent -L --fail http://security.ubuntu.com/ubuntu/pool/main/o/openssl1.0/libssl1.0.0_1.0.2n-1ubuntu5.6_amd64.deb > /tmp/libssl.deb && \
13
- apt-get install -y /tmp/libssl.deb && \
14
- curl --silent -L --fail https://download2.rstudio.org/server/trusty/amd64/rstudio-server-1.2.5042-amd64.deb > /tmp/rstudio.deb && \
15
- echo 'f6d212f2fdc1e1b4e605256a91b69fed6b61c046374934d262b2c3f1e234c0d6 /tmp/rstudio.deb' | shasum -a 256 -c - && \
18
+ curl --silent -L --fail https://download2.rstudio.org/server/bionic/amd64/rstudio-server-2021.09.0%2B351-amd64.deb > /tmp/rstudio.deb && \
19
+ echo '8ab014f050651d0b3d6d10ff0fcd6ea4873b90581f2ee1d4eaa871280685afae /tmp/rstudio.deb' | shasum -a 256 -c - && \
16
20
apt-get install -y /tmp/rstudio.deb && \
17
21
rm /tmp/rstudio.deb && \
18
- rm /tmp/libssl.deb && \
19
22
apt-get clean
20
23
21
24
# These were needed in 1.4x - keeping in case proxy issues are sorted
You can’t perform that action at this time.
0 commit comments