1
1
FROM ubuntu:20.04
2
2
# Ubuntu 18.04 comes with Python 3.6
3
3
4
- ENV R_VERSION 4.0.2
4
+ ENV R_VERSION 4.0.3
5
5
6
6
RUN apt-get update && \
7
7
apt-get install -y \
@@ -13,16 +13,17 @@ RUN apt-get update && \
13
13
proj-bin libproj-dev \
14
14
libgeos-dev libgeos++-dev \
15
15
mime-support \
16
- locales \
17
- fonts-texgyre \
18
- less \
19
- vim-tiny \
20
- liblapack3 \
16
+ locales \
17
+ fonts-texgyre \
18
+ less \
19
+ vim-tiny \
20
+ liblapack3 \
21
+ ncurses-term \
21
22
gcc g++ gfortran && \
22
23
apt-get autoclean && \
23
24
rm -rf /var/lib/apt/lists/*
24
-
25
- RUN curl -sL https://deb.nodesource.com/setup_10 .x | bash - && \
25
+ RUN ln -sf /usr/share/terminfo/x/xterm-color /usr/share/terminfo/x/xterm-256color
26
+ RUN curl -sL https://deb.nodesource.com/setup_14 .x | bash - && \
26
27
apt-get update -y && \
27
28
apt-get install -y nodejs
28
29
@@ -91,7 +92,7 @@ RUN Rscript -e "install.packages(c('rzmq','repr','IRkernel','IRdisplay'),type =
91
92
Rscript -e "install.packages(c('stm','stmCorrViz'))" && \
92
93
Rscript -e "install.packages(c('jsonlite','jsonview','XML','xml2','xmlview'))" && \
93
94
Rscript -e "install.packages(c('igraph'))"
94
- RUN Rscript -e "IRkernel::installspec(displayname = 'R-base 4.0.2 On Backend.AI' , user = FALSE)" && \
95
+ RUN Rscript -e "IRkernel::installspec(displayname = 'R-base 4.0.3 On Backend.AI' , user = FALSE)" && \
95
96
rm -rf /root/.local/share/jupyter && \
96
97
jupyter kernelspec list && \
97
98
cat /usr/local/share/jupyter/kernels/ir/kernel.json
@@ -109,7 +110,7 @@ RUN jupyter nbextensions_configurator enable && \
109
110
# jupyter serverextension enable --py jupyter_lsp && \
110
111
jupyter labextension install --no-build @jupyterlab/toc && \
111
112
# jupyter labextension install @jupyterlab/hdf5
112
- jupyter labextension install --no-build jupyterlab-nvdashboard && \
113
+ # jupyter labextension install --no-build jupyterlab-nvdashboard && \
113
114
jupyter lab build
114
115
RUN ln -s /usr/lib/x86_64-linux-gnu/libffi.so.7 /usr/lib/x86_64-linux-gnu/libffi.so.6
115
116
#RUN ln -s /usr/lib/x86_64-linux-gnu/libssl.so /usr/lib/x86_64-linux-gnu/libssl.so.1.0.0
0 commit comments