From d3e9068c332dc766b6ad222d5385275792f29e90 Mon Sep 17 00:00:00 2001 From: Dawn Lenz Date: Tue, 23 Apr 2024 21:36:40 -0600 Subject: [PATCH] conda version --- dashboards/bokeh/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dashboards/bokeh/Dockerfile b/dashboards/bokeh/Dockerfile index 0ccbe6e..5186fe8 100644 --- a/dashboards/bokeh/Dockerfile +++ b/dashboards/bokeh/Dockerfile @@ -13,7 +13,8 @@ ARG USER=bokeh RUN useradd -s /bin/bash -m ${USER} USER ${USER} -RUN conda create --name neon -c conda-forge python=3.10 numpy=1.24 scipy=1.10 matplotlib=3.7 pandas=1.5 netcdf4=1.6 jupyter=1.0 xarray=2023 tqdm=4.65 bokeh=2.4 jupyterlab=3.5 fsspec=2023 ujson=5.7 gcsfs=2023 dask=2023 zarr=2.14 pillow=8.4 +RUN conda install conda=22.9.0 +RUN conda create --name neon -c conda-forge python numpy scipy matplotlib pandas netcdf4 jupyter xarray tqdm bokeh jupyterlab fsspec ujson gcsfs dask zarr pillow RUN echo "conda activate neon" >> ~/.bashrc SHELL ["/bin/bash", "--login", "-c"]