From 18d493b9e659c91707aef30402572e05633cced1 Mon Sep 17 00:00:00 2001 From: Eli Holmes Date: Sat, 6 Apr 2024 18:07:02 -0700 Subject: [PATCH] try activating the conda env --- images/arcgis-pangeo/Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/images/arcgis-pangeo/Dockerfile b/images/arcgis-pangeo/Dockerfile index a1332fd..65de1c6 100644 --- a/images/arcgis-pangeo/Dockerfile +++ b/images/arcgis-pangeo/Dockerfile @@ -21,5 +21,7 @@ RUN mamba env update --name notebook -f arcgis-environment.yml && \ mamba clean --all RUN rm arcgis-environment.yml -RUN jupyter labextension install @jupyter-widgets/jupyterlab-manager@2 -RUN jupyter labextension install arcgis-map-ipywidget@2.0.0 +SHELL ["/bin/bash", "-c"] +RUN source activate notebook \ + && jupyter labextension install @jupyter-widgets/jupyterlab-manager@2 \ + && jupyter labextension install arcgis-map-ipywidget@2.0.0