From e1466ab3a5a0768a2af3c9b41bf85af270098ffc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rgen=20Skancke?= <761677+jorgsk@users.noreply.github.com> Date: Wed, 24 Apr 2024 11:58:38 +0200 Subject: [PATCH] Base image for intertidal mapper (#190) * added new docker file * fix comment --- .github/workflows/d4science-images.yml | 1 + single-user-ecologicalrestorationlab/Dockerfile | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 single-user-ecologicalrestorationlab/Dockerfile diff --git a/.github/workflows/d4science-images.yml b/.github/workflows/d4science-images.yml index b824f72..ffe66ee 100644 --- a/.github/workflows/d4science-images.yml +++ b/.github/workflows/d4science-images.yml @@ -23,6 +23,7 @@ jobs: "single-user-sobigdata-lipari23/Dockerfile" "single-user-sobigdata-aaai24/Dockerfile" "single-user-criticalzone/Dockerfile" + "single-user-ecologicalrestorationlab/Dockerfile" base-image: diff --git a/single-user-ecologicalrestorationlab/Dockerfile b/single-user-ecologicalrestorationlab/Dockerfile new file mode 100644 index 0000000..453ded1 --- /dev/null +++ b/single-user-ecologicalrestorationlab/Dockerfile @@ -0,0 +1,11 @@ +FROM quay.io/jupyter/minimal-notebook:2024-04-19 as base + +# Install necessary packages +RUN mamba install -y \ + netcdf4==1.6.5 \ + numpy==1.26.4 \ + openeo==0.28.0 \ + matplotlib==3.8.3 \ + xarray==2024.2.0 \ + rioxarray==0.15.1 \ + geopandas==0.14.3