From a0675ca0ee89318063f79a35a1bcfb911f43d06e Mon Sep 17 00:00:00 2001 From: Farhat Ahmed Date: Fri, 8 Nov 2024 15:26:26 -0800 Subject: [PATCH] updated base image --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9c3d008..29ef44b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG BASE_CONTAINER=ucsdets/datahub-base-notebook:2023.2-stable +ARG BASE_CONTAINER=ghcr.io/ucsd-ets/rstudio-notebook:2024.4-stable FROM $BASE_CONTAINER LABEL maintainer="UC San Diego ITS/ETS " @@ -9,6 +9,9 @@ USER root # Requested for DSC170 WI23 COPY requirements.txt /home/jovyan +RUN pip install jupyterlab +ENV dsmlp/datahub=lab + RUN apt update -y && \ apt-get install software-properties-common -y && \ add-apt-repository universe && \ @@ -21,6 +24,7 @@ RUN pip install --upgrade nbconvert RUN mamba install -c conda-forge geopandas cartopy pygeos pysal contextily osmnx jupyterlab_widgets -y + RUN pip uninstall pillow fiona -y && \ pip install -r ~/requirements.txt && \ pip install --upgrade fiona