Skip to content

Commit

Permalink
Create a JupyterLab image for ITINERIS CLIMA (see SBD#27991) (#207)
Browse files Browse the repository at this point in the history
* Create a JupyterLab image for ITINERIS CLIMA (see SBD#27991)

* Amend library
  • Loading branch information
EGI-ILM authored Sep 16, 2024
1 parent d17f966 commit 5bbcb39
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/d4science-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
"single-user-ecologicalrestorationlab/Dockerfile"
"single-user-pluto-d4science/Dockerfile"
"single-user-sobigdata-itineris/Dockerfile"
"single-user-sobigdata-itinerisclima/Dockerfile"
base-image:
Expand Down
35 changes: 35 additions & 0 deletions single-user-sobigdata-itinerisclima/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# ITINERIS CLIMA (see #27991)

ARG BASE_IMAGE=eginotebooks/base:latest
FROM $BASE_IMAGE

USER root

RUN apt update \
&& apt install --no-install-recommends -y \
nco \
cdo \
cmake \
g++ \
libcurl4-openssl-dev \
libssl-dev \
&& apt clean \
&& rm -rf /var/lib/apt/lists/*

USER $NB_UID

RUN pip install --no-cache-dir \
zarr \
holoviews \
hvplot \
cf_xarray \
intake \
intake_esm \
panel \
copernicusmarine

# -------------------------------
# JupyterLab extensions
# -------------------------------
RUN pip install --no-cache-dir jupyterlab-topbar
RUN jupyter labextension disable @jupyterlab/filebrowser-extension:share-file

0 comments on commit 5bbcb39

Please sign in to comment.