Skip to content

Commit b62c9b8

Browse files
committed
update scipy image for Plotly requirements
1 parent f9770c7 commit b62c9b8

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

scipy/Dockerfile

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,19 @@ LABEL maintainer="UW-IT AXDD <[email protected]>"
1010
# bokeh, sqlalchemy, hdf5, vincent, beautifulsoup, protobuf, xlrd, bottleneck,
1111
# pytables, ipywidgets, ipympl, facets
1212

13-
RUN conda install \
13+
14+
RUN set -ex \
15+
&& conda install --quiet --yes \
16+
'plotly==4.14.3' \
1417
emcee \
1518
pymc3 \
1619
astroML \
1720
astropy \
1821
astroplan \
1922
astroquery \
2023
gatspy \
24+
jupyterlab \
25+
'ipywidgets>=7.5' \
2126
pytorch \
2227
photutils \
2328
ccdproc \
@@ -33,10 +38,17 @@ RUN conda install \
3338
lxml \
3439
cssselect \
3540
plotnine \
36-
plotly \
3741
selenium \
3842
pylogit \
39-
choicemodels
43+
choicemodels \
44+
&& conda clean --all -f -y \
45+
&& jupyter labextension install [email protected] --no-build \
46+
&& jupyter lab build -y \
47+
&& jupyter lab clean -y \
48+
&& rm -rf "/home/${NB_USER}/.cache/yarn" \
49+
&& rm -rf "/home/${NB_USER}/.node-gyp" \
50+
&& fix-permissions "${CONDA_DIR}" \
51+
&& fix-permissions "/home/${NB_USER}"
4052

4153
# Install Python 3 packages
4254
RUN pip install \

0 commit comments

Comments
 (0)