Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ COPY . .

# Install the local package in editable mode within the environment
RUN /usr/local/bin/micromamba run -n mdx2-dev pip install -e .
RUN /usr/local/bin/micromamba run -n mdx2-dev pip install --no-cache-dir jupyterhub jupyter-vscode-proxy
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Was this added as an alternative way to access Jupyter notebooks or as an alternative to how we currently access Jupyter notebooks (launch Jupyter Lab server and then paste the URL into VS Code or in your local browser)?

Copy link
Copy Markdown
Author

@saada saada Feb 25, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's additive. Just gives you a VS Code option in the JupyterLab launcher. Everything else works the same as before.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Especially handy for upcoming workspace orchestration stuff


EXPOSE 8888

CMD ["/usr/local/bin/micromamba", "run", "-n", "mdx2-dev", "jupyterhub-singleuser"]