generated from ucsd-ets/datahub-example-notebook
-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
e307d5a
commit cf5c212
Showing
1 changed file
with
4 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 |
---|---|---|
|
@@ -13,14 +13,16 @@ LABEL maintainer="UC San Diego ITS/ETS <[email protected]>" | |
# 2) change to root to install packages | ||
USER root | ||
|
||
RUN apt-get -y install htop | ||
#xarray, netCDF, and dask | ||
#RUN apt-get -y install htop | ||
RUN pip install xarray netCDF4 dask | ||
|
||
# 3) install packages using notebook user | ||
USER jovyan | ||
|
||
# RUN conda install -y scikit-learn | ||
|
||
RUN pip install --no-cache-dir networkx scipy | ||
#RUN pip install --no-cache-dir networkx scipy | ||
|
||
# Override command to disable running jupyter notebook at launch | ||
# CMD ["/bin/bash"] |