-
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.
Add Dockerfile with necessary packagesand example notebooks (#232)
Co-authored-by: irfan-farmer <“khan@dkrz-de”>
- Loading branch information
1 parent
ffba376
commit 30d31a2
Showing
6 changed files
with
3,640 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,24 @@ | ||
FROM quay.io/jupyter/minimal-notebook:2024-04-19 | ||
|
||
# Install necessary Python packages using pip | ||
RUN pip install --no-cache-dir \ | ||
numpy \ | ||
pandas \ | ||
xarray \ | ||
intake \ | ||
intake-esm \ | ||
folium \ | ||
hvplot \ | ||
requests \ | ||
ipywidgets \ | ||
aiohttp \ | ||
pyproj \ | ||
pyparsing \ | ||
zarr \ | ||
fsspec \ | ||
geopy \ | ||
rooki | ||
|
||
# Copy sample notebooks to the working directory | ||
COPY notebooks/ /home/jovyan/work/ | ||
|
Oops, something went wrong.