-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>" | ||
|
@@ -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 | ||
|