File tree 1 file changed +20
-15
lines changed
1 file changed +20
-15
lines changed Original file line number Diff line number Diff line change @@ -13,19 +13,24 @@ WORKDIR "${HOME}"
13
13
# remove the "work/" directory added in an earlier layer...
14
14
RUN rm -rf work
15
15
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}"
31
36
You can’t perform that action at this time.
0 commit comments