Jerry75AI commited on
Commit
399f98e
·
verified ·
1 Parent(s): 68e8798

Upload 2 files

Browse files
Files changed (2) hide show
  1. Dockerfile +2 -2
  2. start_server.sh +1 -0
Dockerfile CHANGED
@@ -18,11 +18,11 @@ RUN curl -fsSL https://get.pnpm.io/install.sh | bash && \
18
  npm install -g configurable-http-proxy && \
19
  dpkg --add-architecture i386 && \
20
  apt update && \
21
- apt install -y nsis lld llvm && \
22
  apt install -y default-jdk openjdk-11-jdk openjdk-17-jdk openjdk-21-jdk default-jre openjdk-11-jre openjdk-17-jre openjdk-21-jre && \
23
  apt install -y wimtools p7zip-full p7zip-rar mkisofs && \
24
  apt install -y aptitude && \
25
- aptitude install -y wine64 wine32 && \
26
  aptitude install -y aria2
27
 
28
  # Create a working directory
 
18
  npm install -g configurable-http-proxy && \
19
  dpkg --add-architecture i386 && \
20
  apt update && \
21
+ apt install -y nsis lld clang && \
22
  apt install -y default-jdk openjdk-11-jdk openjdk-17-jdk openjdk-21-jdk default-jre openjdk-11-jre openjdk-17-jre openjdk-21-jre && \
23
  apt install -y wimtools p7zip-full p7zip-rar mkisofs && \
24
  apt install -y aptitude && \
25
+ aptitude install -y llvm wine64 wine32 && \
26
  aptitude install -y aria2
27
 
28
  # Create a working directory
start_server.sh CHANGED
@@ -14,6 +14,7 @@ jupyter-lab \
14
  --ServerApp.tornado_settings="{'headers': {'Content-Security-Policy': 'frame-ancestors *'}}" \
15
  --ServerApp.cookie_options="{'SameSite': 'None', 'Secure': True}" \
16
  --ServerApp.disable_check_xsrf=True \
 
17
  --LabApp.news_url=None \
18
  --LabApp.check_for_updates_class="jupyterlab.NeverCheckForUpdate" \
19
  --notebook-dir=$NOTEBOOK_DIR
 
14
  --ServerApp.tornado_settings="{'headers': {'Content-Security-Policy': 'frame-ancestors *'}}" \
15
  --ServerApp.cookie_options="{'SameSite': 'None', 'Secure': True}" \
16
  --ServerApp.disable_check_xsrf=True \
17
+ --ContentsManager.allow_hidden=True \
18
  --LabApp.news_url=None \
19
  --LabApp.check_for_updates_class="jupyterlab.NeverCheckForUpdate" \
20
  --notebook-dir=$NOTEBOOK_DIR