-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create a JupyterLab image for ITINERIS CLIMA (see SBD#27991) (#207)
* Create a JupyterLab image for ITINERIS CLIMA (see SBD#27991) * Amend library
- Loading branch information
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |