We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0a092a commit bd06d00Copy full SHA for bd06d00
Dockerfile
@@ -1,3 +1,13 @@
1
-FROM santandermetgroup/climate4r:1.4.1
+FROM jupyter/base-notebook:latest
2
3
-COPY --chown=jovyan:users notebooks /home/$NB_USER/notebooks
+USER root
4
+RUN apt-get update && apt-get install -y xorg git
5
+
6
+USER $NB_USER
7
+RUN conda install mamba -y -n base -c conda-forge && \
8
+ mamba install -y -c santandermetgroup -c conda-forge -c r -c defaults \
9
+ climate4r=1.5.0 \
10
+ xarray pandas matplotlib cartopy netcdf4 cftime dask iris \
11
+ jupyter_contrib_nbextensions jupyter_nbextensions_configurator r-irkernel && \
12
+ chown -R jovyan:users /home/jovyan && \
13
+ R --vanilla -e 'IRkernel::installspec()'
0 commit comments