File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ org.geppetto.frontend.jupyter
2+ pygeppetto
3+ .vscode
4+ .ipynb_checkpoints
5+ netpyne_ui /geppetto
6+ * .egg-info
7+ notebook.ipynb
8+ .git
9+ netpyne
Original file line number Diff line number Diff line change @@ -8,4 +8,5 @@ pygeppetto/
88netpyne /
99org.geppetto.frontend.jupyter /
1010* .ipynb
11- init.py
11+ init.py
12+ .vscode
Original file line number Diff line number Diff line change @@ -23,4 +23,4 @@ RUN unzip $netpyneuiBranch.zip
2323WORKDIR /home/jovyan/netpyne_workspace
2424RUN ln -sfn /home/jovyan/work/NetPyNE-UI-$netpyneuiBranch/netpyne_ui/tests tests
2525
26- CMD /bin/bash -c "source activate snakes && exec jupyter notebook --debug --NotebookApp.default_url=/geppetto --NotebookApp.token='' --library=netpyne_ui"
26+ CMD /bin/bash -c "source activate snakes && exec jupyter notebook --debug --NotebookApp.default_url=/geppetto --NotebookApp.token='' --library=netpyne_ui --NotebookApp.disable_check_xsrf=True "
Original file line number Diff line number Diff line change @@ -5,14 +5,19 @@ ARG netpyneuiBranch=development
55ENV netpyneuiBranch=${netpyneuiBranch}
66RUN echo "$netpyneuiBranch";
77
8- # Clone NetPyNE-UI and install the development version
9- RUN wget https://github.com/MetaCell/NetPyNE-UI/archive/$netpyneuiBranch.zip -q
10- RUN unzip $netpyneuiBranch.zip
11- WORKDIR /home/jovyan/work/NetPyNE-UI-$netpyneuiBranch/utilities
8+ ENV FOLDER=NetPyNE-UI
9+ WORKDIR /home/jovyan/work
10+
11+ COPY --chown=1000:1000 . NetPyNE-UI
12+ WORKDIR ${FOLDER}/utilities
13+
1214RUN /bin/bash -c "source activate snakes && python --version"
1315RUN /bin/bash -c "source activate snakes && exec python install.py branch $netpyneuiBranch"
16+
1417WORKDIR /home/jovyan
18+
1519RUN git clone https://github.com/Neurosim-lab/netpyne_workspace
1620WORKDIR /home/jovyan/netpyne_workspace
17- RUN ln -sfn /home/jovyan/work/NetPyNE-UI-$netpyneuiBranch/netpyne_ui/tests tests
18- CMD /bin/bash -c "source activate snakes && exec jupyter notebook --debug --NotebookApp.default_url=/geppetto --NotebookApp.token='' --library=netpyne_ui"
21+
22+ RUN ln -sfn /home/jovyan/work/NetPyNE-UI/netpyne_ui/tests tests
23+ CMD /bin/bash -c "source activate snakes && exec jupyter notebook --debug --NotebookApp.default_url=/geppetto --NotebookApp.token='' --library=netpyne_ui --NotebookApp.disable_check_xsrf=True"
Original file line number Diff line number Diff line change 11#! /bin/sh
2- exec jupyter notebook --NotebookApp.default_url=/geppetto --NotebookApp.token=' ' --library=netpyne_ui
2+ exec jupyter notebook --NotebookApp.default_url=/geppetto --NotebookApp.token=' ' --library=netpyne_ui --NotebookApp.disable_check_xsrf=True
You can’t perform that action at this time.
0 commit comments