File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,6 @@ RUN python3 -m venv $VIRTUAL_ENV && \
57
57
python -m pip install --no-cache-dir ipykernel && \
58
58
rm -rf build packageTools/build base/build metisCy/build fem/build multilevelSolver/build nl/build && \
59
59
python -m ipykernel install --name=PyNucleus && \
60
- echo '[ ! -z "$TERM" -a -r /pynucleus/README.container.rst ] && printf "\e [32m" && cat /pyncleus /README.container.rst && printf "\e [0m"' >> /etc/bash.bashrc
60
+ echo '[ ! -z "$TERM" -a -r /pynucleus/README.container.rst ] && printf "\e [32m" && cat /pynucleus /README.container.rst && printf "\e [0m"' >> /etc/bash.bashrc
61
61
62
62
WORKDIR /root
Original file line number Diff line number Diff line change @@ -27,10 +27,10 @@ services:
27
27
hostname : pynucleus-container
28
28
command : >
29
29
sh -c "
30
- mkdir -p /root/notebooks &&
30
+ mkdir -p /root/examples &&
31
31
mkdir -p /root/drivers &&
32
- cp --update=none /pynucleus/examples/* /root/examples &&
33
- cp --update=none /pynucleus/drivers/* /root/drivers &&
32
+ cp -r - -update=none /pynucleus/examples/* /root/examples &&
33
+ cp -r - -update=none /pynucleus/drivers/* /root/drivers &&
34
34
if [ ! -f /root/.bashrc ]; then echo \"alias ls='ls --color=auto -FN'\" >> /root/.bashrc ; fi &&
35
35
if [ ! -f /root/.inputrc ]; then echo \"set completion-ignore-case On\" >> /root/.inputrc ; fi &&
36
36
jupyter notebook --port=8888 --no-browser --ip=0.0.0.0 --allow-root --NotebookApp.token='' --NotebookApp.password='' --notebook-dir=/root/ --KernelSpecManager.ensure_native_kernel=False --KernelSpecManager.allowed_kernelspecs=pynucleus > /dev/null 2>&1 &
You can’t perform that action at this time.
0 commit comments