Problem
The eopf-zarr-driver image (ghcr.io/eopf-sample-service/eopf-container-images/eopf-zarr-driver:latest) is missing rioxarray, which is required by several notebooks in eopf-sample-notebooks.
Current mamba install in eopf-zarr-driver/Dockerfile includes rasterio but not rioxarray.
Task
Add rioxarray to the mamba install block in eopf-zarr-driver/Dockerfile:
RUN mamba install -y -c conda-forge \
'gdal>=3.10,<3.11' \
rasterio \
+ rioxarray \
xarray \
Then trigger a rebuild to push a fresh latest to GHCR.
Context
Used at jupyterhub.user.eopf.eodc.eu as the kernel image for EOPF sample notebooks.