Evgueni Poloukarov commited on
Commit
e1a549f
·
1 Parent(s): 8429ece

fix: point JupyterLab to correct notebook directory

Browse files

- Changed NOTEBOOK_DIR from /data to /home/user/app
- Notebooks are copied to /home/user/app by Dockerfile
- JupyterLab was looking in empty /data directory

Files changed (1) hide show
  1. start_server.sh +1 -1
start_server.sh CHANGED
@@ -2,7 +2,7 @@
2
 
3
  JUPYTER_TOKEN="${JUPYTER_TOKEN:=huggingface}"
4
 
5
- NOTEBOOK_DIR="/data"
6
 
7
  jupyter labextension disable "@jupyterlab/apputils-extension:announcements"
8
 
 
2
 
3
  JUPYTER_TOKEN="${JUPYTER_TOKEN:=huggingface}"
4
 
5
+ NOTEBOOK_DIR="/home/user/app"
6
 
7
  jupyter labextension disable "@jupyterlab/apputils-extension:announcements"
8