File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,14 +4,14 @@ FROM $BASE_CONTAINER
4
4
# Base notebook for 1.4.2 uses Ubuntu 20.04 (Focal)
5
5
6
6
RUN pip install jupyter-rsession-proxy
7
- RUN conda install -y -c r r-tidyverse
7
+ RUN conda install -y -c r r-tidyverse gdal
8
8
9
9
# install rstudio-server
10
10
USER root
11
11
12
12
# Per: http://cran.rstudio.com/bin/linux/ubuntu/
13
13
RUN apt-get update && \
14
- apt-get install gdebi-core - y && \
14
+ apt-get install gdebi-core libproj-dev proj-data proj-bin libgeos-dev build-essential - y && \
15
15
curl --silent -L --fail https://download2.rstudio.org/server/bionic/amd64/rstudio-server-2021.09.1-372-amd64.deb > /tmp/rstudio.deb && \
16
16
echo 'c58df09468870b89f1796445853dce2dacaa0fc5b7bb1f92b036fa8da1d1f8a3 /tmp/rstudio.deb' | shasum -a 256 -c - && \
17
17
apt-get install -y /tmp/rstudio.deb && \
@@ -33,7 +33,7 @@ RUN pip install nbgitpuller && \
33
33
34
34
# See: https://github.com/uw-it-aca/rttl-notebooks/pull/15
35
35
RUN R -e "devtools::install_github('IRkernel/repr', ref = 'master')"
36
- RUN R -e "install.packages('IRkernel',repos='http://cran.us.r-project.org')"
36
+ RUN R -e "install.packages(c( 'IRkernel', 'fastR2') ,repos='http://cran.us.r-project.org')"
37
37
RUN R -e "IRkernel::installspec()"
38
38
39
39
ENV RSESSION_PROXY_RSTUDIO_1_4=yes
You can’t perform that action at this time.
0 commit comments