-
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.
Change directory of image and removed a couple installation lines
- Loading branch information
Showing
2 changed files
with
7 additions
and
10 deletions.
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:stable | ||
ARG BASE_CONTAINER=ghcr.io/ucsd-ets/datascience-notebook:2024.4-stable | ||
FROM $BASE_CONTAINER | ||
|
||
LABEL maintainer="UC San Diego ITS/ETS <[email protected]>" | ||
|
@@ -16,19 +16,16 @@ RUN apt update -y && \ | |
apt install graphviz -y | ||
RUN mamba install -c esri arcgis=2.2.0 -y | ||
|
||
RUN mamba install numpy=1.22.4 -y || echo "Failed to install numpy" | ||
RUN mamba install numpy -y | ||
|
||
RUN pip install --upgrade pip setuptools wheel | ||
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 || echo "Failed to uninstall pillow or fiona" && \ | ||
pip install -r ~/requirements.txt || echo "Failed to install requirements" && \ | ||
pip install --upgrade fiona || echo "Failed to upgrade fiona" | ||
|
||
RUN jupyter nbextension enable --py --sys-prefix arcgis && \ | ||
jupyter nbextension enable --py --sys-prefix arcgis | ||
RUN pip uninstall pillow fiona -y && \ | ||
pip install -r ~/requirements.txt && \ | ||
pip install --upgrade fiona | ||
|
||
USER $NB_UID | ||
|
||
|
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