mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-07 18:14:05 +00:00
Use mamba to install jupyter-server-proxy (#2262)
* Use mamba to install jupyter-server-proxy * Update changelog
This commit is contained in:
@@ -3,6 +3,12 @@
|
|||||||
This changelog only contains breaking and/or significant changes manually introduced to this repository (using Pull Requests).
|
This changelog only contains breaking and/or significant changes manually introduced to this repository (using Pull Requests).
|
||||||
All image manifests can be found in [the wiki](https://github.com/jupyter/docker-stacks/wiki).
|
All image manifests can be found in [the wiki](https://github.com/jupyter/docker-stacks/wiki).
|
||||||
|
|
||||||
|
## 2025-03-23
|
||||||
|
|
||||||
|
Affected: `tensorflow-notebook`.
|
||||||
|
|
||||||
|
- **Non-breaking:** `tensorflow-notebook`: Use mamba to install jupyter-server-proxy ([#2262](https://github.com/jupyter/docker-stacks/pull/2262)).
|
||||||
|
|
||||||
## 2025-03-22
|
## 2025-03-22
|
||||||
|
|
||||||
Affected: all images.
|
Affected: all images.
|
||||||
|
@@ -11,10 +11,15 @@ LABEL maintainer="Jupyter Project <jupyter@googlegroups.com>"
|
|||||||
# Fix: https://github.com/koalaman/shellcheck/wiki/SC3014
|
# Fix: https://github.com/koalaman/shellcheck/wiki/SC3014
|
||||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||||
|
|
||||||
|
RUN mamba install --yes \
|
||||||
|
'jupyter-server-proxy' && \
|
||||||
|
mamba clean --all -f -y && \
|
||||||
|
fix-permissions "${CONDA_DIR}" && \
|
||||||
|
fix-permissions "/home/${NB_USER}"
|
||||||
|
|
||||||
# Install tensorflow with pip, on x86_64 tensorflow-cpu
|
# Install tensorflow with pip, on x86_64 tensorflow-cpu
|
||||||
RUN [[ $(uname -m) = x86_64 ]] && TF_POSTFIX="-cpu" || TF_POSTFIX="" && \
|
RUN [[ $(uname -m) = x86_64 ]] && TF_POSTFIX="-cpu" || TF_POSTFIX="" && \
|
||||||
pip install --no-cache-dir \
|
pip install --no-cache-dir \
|
||||||
"jupyter-server-proxy" \
|
|
||||||
"tensorflow${TF_POSTFIX}" && \
|
"tensorflow${TF_POSTFIX}" && \
|
||||||
fix-permissions "${CONDA_DIR}" && \
|
fix-permissions "${CONDA_DIR}" && \
|
||||||
fix-permissions "/home/${NB_USER}"
|
fix-permissions "/home/${NB_USER}"
|
||||||
|
@@ -11,9 +11,14 @@ LABEL maintainer="Jupyter Project <jupyter@googlegroups.com>"
|
|||||||
# Fix: https://github.com/koalaman/shellcheck/wiki/SC3014
|
# Fix: https://github.com/koalaman/shellcheck/wiki/SC3014
|
||||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||||
|
|
||||||
|
RUN mamba install --yes \
|
||||||
|
'jupyter-server-proxy' && \
|
||||||
|
mamba clean --all -f -y && \
|
||||||
|
fix-permissions "${CONDA_DIR}" && \
|
||||||
|
fix-permissions "/home/${NB_USER}"
|
||||||
|
|
||||||
# Install TensorFlow, CUDA and cuDNN with pip
|
# Install TensorFlow, CUDA and cuDNN with pip
|
||||||
RUN pip install --no-cache-dir \
|
RUN pip install --no-cache-dir \
|
||||||
"jupyter-server-proxy" \
|
|
||||||
"tensorflow[and-cuda]<=2.17.1" && \
|
"tensorflow[and-cuda]<=2.17.1" && \
|
||||||
fix-permissions "${CONDA_DIR}" && \
|
fix-permissions "${CONDA_DIR}" && \
|
||||||
fix-permissions "/home/${NB_USER}"
|
fix-permissions "/home/${NB_USER}"
|
||||||
|
@@ -54,6 +54,7 @@ EXCLUDED_PACKAGES = [
|
|||||||
"grpcio-status",
|
"grpcio-status",
|
||||||
"grpcio",
|
"grpcio",
|
||||||
"hdf5",
|
"hdf5",
|
||||||
|
"jupyter-server-proxy",
|
||||||
"jupyterhub-singleuser",
|
"jupyterhub-singleuser",
|
||||||
"jupyterlab-git",
|
"jupyterlab-git",
|
||||||
"mamba",
|
"mamba",
|
||||||
|
Reference in New Issue
Block a user