update: hide top-panel

This commit is contained in:
tao.chen
2026-08-03 19:43:51 +08:00
parent 2c54f88181
commit 6c4bf47487
2 changed files with 7 additions and 0 deletions
+2
View File
@@ -37,5 +37,7 @@ COPY common ./common
COPY runtime ./runtime
RUN UV_DEFAULT_INDEX="https://pypi.tuna.tsinghua.edu.cn/simple/" uv sync --frozen --no-dev --no-editable --package runtime
COPY overrides.json /app/.venv/share/jupyter/lab/settings/overrides.json
EXPOSE 8000
CMD ["uv", "run", "--frozen", "--package", "runtime", "gunicorn", "--config", "runtime/gunicorn.conf.py", "runtime.main:app"]
+5
View File
@@ -0,0 +1,5 @@
{
"@jupyterlab/apputils-extension:themes": {
"rawOverrides": "#top-panel { display: none !important; height: 0 !important; }"
}
}