Skip to content

Commit d284670

Browse files
dockerfile uses pip instead of mamba to avoid issue with sphinx-external-toc, attrs, and referencing for now
1 parent 6778843 commit d284670

File tree

1 file changed

+20
-15
lines changed

1 file changed

+20
-15
lines changed

Dockerfile

+20-15
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,24 @@ WORKDIR "${HOME}"
1313
# remove the "work/" directory added in an earlier layer...
1414
RUN rm -rf work
1515

16-
# Install various python packages
17-
RUN mamba install --quiet --yes \
18-
'numpy' \
19-
'jinja2' \
20-
'altair_data_server' \
21-
'altair_saver' \
22-
'click' \
23-
'ibis-framework' \
24-
'ghp-import' \
25-
'jupytext' \
26-
'jupyter-book' \
27-
'nodejs' \
28-
&& mamba clean --all -f -y \
29-
&& fix-permissions "${CONDA_DIR}" \
30-
&& fix-permissions "/home/${NB_USER}"
16+
17+
RUN pip install referencing
18+
RUN pip install jupyter-book
19+
RUN pip install numpy jinja2 altair_data_server altair_saver click ibis-framework ghp-import jupytext nodejs
20+
21+
## Install various python packages
22+
#RUN mamba install --quiet --yes \
23+
# 'numpy' \
24+
# 'jinja2' \
25+
# 'altair_data_server' \
26+
# 'altair_saver' \
27+
# 'click' \
28+
# 'ibis-framework' \
29+
# 'ghp-import' \
30+
# 'jupytext' \
31+
# 'jupyter-book' \
32+
# 'nodejs' \
33+
# && mamba clean --all -f -y \
34+
# && fix-permissions "${CONDA_DIR}" \
35+
# && fix-permissions "/home/${NB_USER}"
3136

0 commit comments

Comments
 (0)