-
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
9 additions
and
2 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,11 +1,18 @@ | ||
ARG BASE_CONTAINER=ghcr.io/ucsd-ets/datascience-notebook:2023.4-stable | ||
ARG BASE_CONTAINER=ghcr.io/ucsd-ets/datascience-notebook:2024.4-stable | ||
FROM $BASE_CONTAINER | ||
|
||
USER root | ||
|
||
# Currently, pandas 1.5.3 breaks nbgrader on JLab4 due to its reliance on an older version of | ||
# typing-extensions (4.1.1). | ||
# Wordcloud 1.8.1 does not support python 3.11. | ||
# We are removing nbgrader to avoid installing faulty extensions in JLab. | ||
|
||
RUN pip install coverage==5.5 && \ | ||
pip install 'pandas>=0.24, <= 1.5.3' babypandas==0.1.9 pandas-tutor==2.0.3 && \ | ||
pip install otter-grader==3.3.0 && \ | ||
pip install wordcloud==1.8.1 | ||
pip install wordcloud && \ | ||
pip uninstall nbgrader -y | ||
|
||
|
||
USER $NB_UID |