Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install jupyter widgets in tensorflow-notebook-image #518

Merged
merged 1 commit into from
Mar 28, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions components/tensorflow-notebook-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,13 @@ RUN conda_packages=$(conda list -e | cut -d '=' -f 1 | grep -v '#' | sort) && \
pip install --no-cache-dir tensorflow-transform && \
source deactivate

# install notebook and lab widgets
RUN conda install -n root -c conda-forge widgetsnbextension && \
conda install -n ipykernel_py2 -c conda-forge widgetsnbextension && \
conda install -n root -c conda-forge ipywidgets && \
conda install -n ipykernel_py2 -c conda-forge ipywidgets && \
jupyter labextension install @jupyter-widgets/jupyterlab-manager

# Add local files as late as possible to avoid cache busting
COPY start.sh /usr/local/bin/
COPY start-notebook.sh /usr/local/bin/
Expand Down